趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
Simulation_field.h
Go to the documentation of this file.
1 #ifndef HRK_SIMULATION_FIELD_H
2 #define HRK_SIMULATION_FIELD_H
3 
9 #include <memory>
10 
11 
12 namespace hrk
13 {
14  class Differential_drive_model;
15 
17  {
18  public:
21 
22  void add_differential_drive(Differential_drive_model& model);
23  void remove_model(const Differential_drive_model& model);
24 
25  // !!! add_model(model);
26  // !!! remove_model()
27 
28  private:
30  Simulation_field& operator = (const Simulation_field& rhs);
31 
32  struct pImpl;
33  std::auto_ptr<pImpl> pimpl;
34  };
35 }
36 
37 #endif
Definition: Simulation_field.h:16
Definition: Differential_drive_model.h:11