CARMA C++
PmacFlags.h
Go to the documentation of this file.
1 #ifndef SZA_UTIL_PMACFLAGS_H
2 #define SZA_UTIL_PMACFLAGS_H
3 
11 namespace sza {
12  namespace util {
13 
14  class PmacFlags {
15  public:
16 
17  enum {
18  STOPPED = 0x1,
19  RUNNING = 0x2,
20  PROGRAM_OK = 0x4,
21  PROGRAM_ERROR = 0x8,
22  SOURCE_NOT_ACQUIRED = 0x10,
23  SOURCE_ACQUIRED = 0x20,
24  STABLE = 0x40,
25  UNSTABLE = 0x80,
26  };
27 
28  }; // End class PmacFlags
29 
30  } // End namespace util
31 } // End namespace sza
32 
33 
34 
35 #endif // End #ifndef SZA_UTIL_PMACFLAGS_H