CARMA C++
YigFlags.h
Go to the documentation of this file.
1 #ifndef SZA_UTIL_YIGFLAGS_H
2 #define SZA_UTIL_YIGFLAGS_H
3 
11 namespace sza {
12  namespace util {
13 
14  class YigFlags {
15  public:
16 
17  enum {
18  UNLOCKED = 0x1,
19  SEARCHING = 0x2,
20  REFINING = 0x4,
21  LOCKED = 0x8,
22  RELOCK = 0x10
23  };
24  }; // End class YigFlags
25 
26  } // End namespace util
27 } // End namespace sza
28 
29 
30 
31 #endif // End #ifndef SZA_UTIL_YIGFLAGS_H