CARMA C++
OffsetAxes.idl
Go to the documentation of this file.
1 
8 #ifndef _OFFSETAXESIDL
9 #define _OFFSETAXESIDL
10 
11 module carma {
12 
13  module antenna {
14 
15  module common {
16 
17  interface OffsetAxes {
18 
19  const long NONE = 0x0;
20  const long AZ = 0x2;
21  const long EL = 0x4;
22  const long RA = 0x8;
23  const long DEC = 0x16;
24  const long X = 0x32;
25  const long Y = 0x64;
26 
27  }; // End OffsetAxes interface
28 
29  }; // End module common
30 
31  }; // End module antenna
32 
33 }; // End module carma
34 
35 #endif // _OFFSETAXESIDL
36 
37