17 lines
219 B
C++
17 lines
219 B
C++
#ifndef Robot_H
|
|
#define Robot_H
|
|
|
|
class Positie;
|
|
class Interface;
|
|
|
|
class Robot{
|
|
private:
|
|
Interface *P;
|
|
public:
|
|
Robot (Interface*);
|
|
virtual ~Robot();
|
|
virtual void run();
|
|
virtual void show();
|
|
};
|
|
|
|
#endif |