My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
Tracking.h
Go to the documentation of this file.
1 #ifndef GCP_UTIL_TRACKING_H
2 #define GCP_UTIL_TRACKING_H
3 
11 namespace gcp {
12  namespace util {
13 
17  class Tracking {
18  public:
19 
20  enum Type {
21  TRACK_NONE = 0x0,
22  TRACK_POINT = 0x2,
23  TRACK_PHASE = 0x4,
24  TRACK_BOTH = TRACK_POINT | TRACK_PHASE
25  };
26 
27  enum SlewType {
28  TRACK_FIXED = 0x1,
29  TRACK_CENTER = 0x2,
30  };
31 
32  }; // End class Tracking
33 
34  } // End namespace util
35 } // End namespace gcp
36 
37 
38 #endif
Definition: Tracking.h:17