-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactuator.cpp
32 lines (23 loc) · 1.16 KB
/
actuator.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "actuator.h"
/******************************************************************************/
/******************************************************************************/
//CActuator::CActuator(const char* pch_name, CSBot* pc_sbot, unsigned int un_number_of_inputs) :
// CSimObject(pch_name), m_unNumberOfOutputs(un_number_of_inputs), m_pcSBot(pc_sbot)
CActuator::CActuator(const char* pch_name, CEpuck* pc_epuck, unsigned int un_number_of_inputs) :
CSimObject(pch_name), m_unNumberOfOutputs(un_number_of_inputs), m_pcEpuck(pc_epuck)
{
}
/******************************************************************************/
/******************************************************************************/
unsigned int CActuator::GetNumberOfOutputs()
{
return m_unNumberOfOutputs;
}
/******************************************************************************/
/******************************************************************************/
CEpuck* CActuator::GetEpuck()
{
return m_pcEpuck;
}
/******************************************************************************/
/******************************************************************************/