-
Notifications
You must be signed in to change notification settings - Fork 0
/
controller.h
34 lines (23 loc) · 972 Bytes
/
controller.h
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
32
33
34
#ifndef CONTROLLER_H
#define CONTROLLER_H
/******************************************************************************/
/******************************************************************************/
class CController;
/******************************************************************************/
/******************************************************************************/
#include "simobject.h"
#include "epuck.h"
/******************************************************************************/
/******************************************************************************/
class CController : public CSimObject
{
public:
CController(const char* pch_name, CEpuck* pc_epuck);
virtual ~CController();
virtual CEpuck* GetEpuck();
protected:
CEpuck* m_pcEpuck;
};
/******************************************************************************/
/******************************************************************************/
#endif