CARMA C++
SwitchState.idl
1 #ifndef _SWITCHSTATEIDL
2 #define _SWITCHSTATEIDL
3 
4 module carma {
5 
6  module antenna {
7 
8  module common {
18  enum SwitchState {
19  ON,
20  OFF
21  };
22 
23  }; // End common module
24 
25  }; // End antenna module
26 
27 }; // End carma module
28 
29 #endif
SwitchState
Generic switch state enumerator.
Definition: SwitchState.idl:18