趣味で作ってるロボット用ソフトウェア
Main Page
Related Pages
Classes
Files
Examples
File List
File Members
All
Classes
Files
Functions
Enumerations
Enumerator
Friends
Pages
lib
monitor
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
16
class
Simulation_field
17
{
18
public
:
19
Simulation_field
();
20
~
Simulation_field
();
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
:
29
Simulation_field
(
const
Simulation_field
& rhs);
30
Simulation_field
& operator = (
const
Simulation_field
& rhs);
31
32
struct
pImpl;
33
std::auto_ptr<pImpl> pimpl;
34
};
35
}
36
37
#endif
hrk::Simulation_field
Definition:
Simulation_field.h:16
hrk::Differential_drive_model
Definition:
Differential_drive_model.h:11
Generated on Tue Oct 24 2017 04:56:04 for 趣味で作ってるロボット用ソフトウェア by
1.8.6