GEAR  1.9.0
 All Classes Namespaces Functions Variables Typedefs Enumerations Friends Pages
CGAGeometryInitializer.h
1 #ifndef GEAR_CGAGEOMETRYINITIALIZER_H
2 #define GEAR_CGAGEOMETRYINITIALIZER_H 1
3 
4 #include <string>
5 #include <vector>
6 
7 #include "gear/GEAR.h"
8 
9 namespace gear {
10 
16 
17 public:
19  virtual ~CGAGeometryInitializer() { /* nop */; }
20 
21  static CGAGeometryInitializer * GetCGAGeometryInitializer(
22  std::string steeringFile, std::string model,
23  std::string setup, std::string host, std::string user,
24  std::string password);
25 
26 private:
27 
28  CGAGeometryInitializer(std::string steeringFile, std::string model,
29  std::string setup, std::string host, std::string user,
30  std::string password);
31 
32  static CGAGeometryInitializer * theInitializer;
33 }; // class
34 } // namespace gear
35 #endif /* ifndef GEAR_CGAGEOMETRYINITIALIZER_H */
CGA Geometry Initializer class.
virtual ~CGAGeometryInitializer()
Destructor.