趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
Differential_drive_model.h
Go to the documentation of this file.
1 #ifndef HRK_DIFFERENTIAL_DRIVE_MODEL_H
2 #define HRK_DIFFERENTIAL_DRIVE_MODEL_H
3 
9 namespace hrk
10 {
12  {
13  public:
14  virtual ~Differential_drive_model()
15  {
16  }
17 
18  virtual int control_cycle_msec() const = 0;
19  virtual void set_velocity(int left_velocity, int right_velocity) = 0;
20  };
21 }
22 
23 #endif
Definition: Differential_drive_model.h:11