NavigationFrame.hpp
1 #ifndef OPALS_NAVIGATION_FRAME_HPP_INCLUDED
2 #define OPALS_NAVIGATION_FRAME_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// TODO: Enumerator for what?
9  namespace NavigationFrame
10  {
11  enum Type
12  {
13  ned , ///< north east down (ARINC)
14  enu , ///< east north up
15  Count ///< number of elements
16  };
17  }
18 }
19 
20 #endif