Hemisphere.hpp
1 #ifndef OPALS_HEMISPHERE_HPP_INCLUDED
2 #define OPALS_HEMISPHERE_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// Hemispheres of the Earth or another planet.
9  namespace Hemisphere
10  {
11  enum Type
12  {
13  north , ///< Northern hemisphere
14  south , ///< Southern hemisphere
15  Count ///< number of elements
16  };
17  }
18 }
19 
20 #endif