My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
Collimation.h
1 // $Id: Collimation.h,v 1.1.1.1 2009/07/06 23:57:25 eml Exp $
2 
3 #ifndef GCP_UTIL_COLLIMATION_H
4 #define GCP_UTIL_COLLIMATION_H
5 
15 namespace gcp {
16  namespace util {
17 
18  class Collimation {
19  public:
20 
21  enum Type {
22  FIXED = 0x1,
23  POLAR = 0x2
24  };
25 
29  Collimation();
30 
34  virtual ~Collimation();
35 
36  private:
37  }; // End class Collimation
38 
39  } // End namespace util
40 } // End namespace gcp
41 
42 
43 
44 #endif // End #ifndef GCP_UTIL_COLLIMATION_H
Definition: Collimation.h:18