smurf
Motor.hpp
Go to the documentation of this file.
1 #ifndef MOTOR_H
2 #define MOTOR_H
3 #include <configmaps/ConfigData.h>
4 
5 namespace smurf{
6 
7  class Motor
8  {
9  public:
10  Motor(configmaps::ConfigMap map);
11 
12  std::string getName() const { return this->name; }
13 
14  configmaps::ConfigMap getMotorMap() const { return this->motorMap; }
15 
16  protected:
17  configmaps::ConfigMap motorMap;
18  std::string name;
19  };
20 
21 }
22 
23 #endif // MOTOR_H
Motor(configmaps::ConfigMap map)
Definition: Motor.cpp:3
configmaps::ConfigMap getMotorMap() const
Definition: Motor.hpp:14
std::string getName() const
Definition: Motor.hpp:12
configmaps::ConfigMap motorMap
Definition: Motor.hpp:17
std::string name
Definition: Motor.hpp:18
Definition: Motor.hpp:7