CARMA C++
CalTertTypes.h
Go to the documentation of this file.
1 #ifndef SZA_UTIL_CALTERTTYPES_H
2 #define SZA_UTIL_CALTERTTYPES_H
3 
11 namespace sza {
12  namespace util {
13 
14  class CalTertTypes {
15  public:
16 
17  // Enumerate valid one-wire devices
18 
19  enum OwDevice {
20  MODULE = 0,
21  ENCODER = 1,
22  DEV_NONE = 2,
23  };
24 
25  // Enumerate valid one-wire device commands
26 
27  enum OwCommand {
28  READ = 0,
29  WRITE = 1,
30  CMD_NONE = 2,
31  };
32 
33  }; // End class CalTertTypes
34 
35  } // End namespace util
36 } // End namespace sza
37 
38 
39 
40 #endif // End #ifndef SZA_UTIL_CALTERTTYPES_H