CARMA C++
PointingMode.h
1 #ifndef SZA_UTIL_POINTINGMODE_H
2 #define SZA_UTIL_POINTINGMODE_H
3 
11 namespace sza {
12  namespace util {
13 
14 
18  class PointingMode {
19 
20  public:
21 
25  enum Type {
26  OPTICAL,
27  RADIO,
28  CURRENT
29  };
30 
31  }; // End class PointingMode
32 
33  }; // End namespace util
34 }; // End namespace sza
35 
36 #endif // End #ifndef
Define a class to specify a pointing mode.
Definition: PointingMode.h:18
Type
Enumerate possible pointing modes.
Definition: PointingMode.h:25