2023-04-25 13:15:39 +00:00
|
|
|
#ifndef Robot_H
|
|
|
|
#define Robot_H
|
|
|
|
|
2023-05-11 08:40:01 +00:00
|
|
|
class Positie;
|
|
|
|
class Interface;
|
|
|
|
|
2023-04-25 13:15:39 +00:00
|
|
|
class Robot{
|
|
|
|
private:
|
2023-04-26 12:39:59 +00:00
|
|
|
Interface *P;
|
2023-04-25 13:15:39 +00:00
|
|
|
public:
|
|
|
|
Robot (Interface*);
|
2023-05-11 08:40:01 +00:00
|
|
|
virtual ~Robot();
|
2023-04-26 12:39:59 +00:00
|
|
|
virtual void run();
|
|
|
|
virtual void show();
|
2023-04-25 13:15:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|