My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
FrameFlags.h
Go to the documentation of this file.
1 #ifndef GCP_UTIL_FRAMEFLAGS_H
2 #define GCP_UTIL_FRAMEFLAGS_H
3 
11 namespace gcp {
12  namespace util {
13 
14  class FrameFlags {
15  public:
16 
17  /*
18  * Enumerate states used to indicate if data from a given
19  * frame were received/not received
20  */
21  enum {
22  NOT_RECEIVED = 0x1,
23  RECEIVED = 0x2
24  };
25 
26  }; // End class FrameFlags
27 
28  } // End namespace util
29 } // End namespace gcp
30 
31 
32 
33 
34 #endif // End #ifndef GCP_UTIL_FRAMEFLAGS_H
Definition: FrameFlags.h:14