趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
Ode_handler.h
Go to the documentation of this file.
1 #ifndef HRK_ODE_HANDLER_H
2 #define HRK_ODE_HANDLER_H
3 
9 #define dDOUBLE
10 #include <ode/ode.h>
11 
12 
13 namespace hrk
14 {
16  {
17  public:
18  Ode_handler* singleton();
19 
20  dWorldID world();
21  dSpaceID space();
22  dGeomID ground();
23  dJointGroupID contactGroup();
24 
25  private:
26  Ode_handler();
27  Ode_handler(const Ode_handler& rhs);
28  Ode_handler& operator = (const Ode_handler& rhs);
29  };
30 }
31 
32 #endif
Definition: Ode_handler.h:15