趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
Roomba_model.h
Go to the documentation of this file.
1 #ifndef HRK_ROOMBA_MODEL_H
2 #define HRK_ROOMBA_MODEL_H
3 
9 #include <memory>
11 
12 
13 namespace hrk
14 {
16  {
17  public:
18  Roomba_model();
19  ~Roomba_model();
20 
21  int control_cycle_msec() const;
22  void set_velocity(int left_velocity, int right_velocity);
23 
24  private:
25  Roomba_model(const Roomba_model& rhs);
26  Roomba_model& operator = (const Roomba_model& rhs);
27 
28  struct pImpl;
29  std::auto_ptr<pImpl> pimpl;
30  };
31 }
32 
33 #endif
ODE 用の Differential Drive インターフェース
Definition: Roomba_model.h:15
Definition: Differential_drive_model.h:11