#include <InputData.h>
Inheritance diagram for cmil::Press:
Public Member Functions | |
Press (const std::string &ident) | |
virtual InputData * | clone () |
void | do_run (ModAction *action) const |
Definition at line 172 of file InputData.h.
cmil::Press::Press | ( | const std::string & | ident | ) | [inline] |
Definition at line 174 of file InputData.h.
Referenced by clone().
00174 : ModData(ident) {};
Here is the caller graph for this function:
virtual InputData* cmil::Press::clone | ( | ) | [inline, virtual] |
Implements cmil::ModData.
Definition at line 176 of file InputData.h.
References Press().
00176 { 00177 return new Press(*this); 00178 };
Here is the call graph for this function:
void cmil::Press::do_run | ( | ModAction * | action | ) | const [inline, virtual] |
Implements cmil::ModData.
Definition at line 180 of file InputData.h.
References cmil::InputData::m_state, and cmil::ModAction::Movement().
00180 { 00181 action->Movement(m_state); 00182 }
Here is the call graph for this function: