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