Bike-X  0.8
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Ovr.h
Go to the documentation of this file.
1 #ifndef OVR_H
2 #define OVR_H
3 
4 #ifndef DEBUG
5  #define DEBUG 1
6 #endif
7 
8 #include <ostream>
9 #include <OVR_CAPI.h>
10 
15 class Ovr
16 {
17 public:
18  // ******************* Attributes *********************************
22  bool mock;
23 
28 
33 
38 
39  // ******************* Methods (constructors first) **************
43  Ovr();
44 
48  ~Ovr();
49 
53  bool init();
54 
58  friend std::ostream& operator<<(std::ostream&, const Ovr&);
59 
63  bool startSensor();
64 
65  // ********************* Methods declared in UML *************************
66 
70  void getXYZW(double * x, double * y, double * z, double * w);
71 };
72 
73 #endif
bool startSensor()
Definition: Ovr.cpp:91
~Ovr()
Definition: Ovr.cpp:22
friend std::ostream & operator<<(std::ostream &, const Ovr &)
Definition: Ovr.cpp:162
bool ovrInitiated
Definition: Ovr.h:27
bool mock
Definition: Ovr.h:22
ovrHmd hmd
Definition: Ovr.h:32
bool init()
Definition: Ovr.cpp:39
ovrHmdDesc hmdDesc
Definition: Ovr.h:37
Definition: Ovr.h:15
void getXYZW(double *x, double *y, double *z, double *w)
Definition: Ovr.cpp:106
Ovr()
Definition: Ovr.cpp:13