16 lines
202 B
C
16 lines
202 B
C
|
#ifndef _Auto_H
|
||
|
#define _Auto_H
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class Snelheid;
|
||
|
|
||
|
class Auto{
|
||
|
private:
|
||
|
Snelheid* S;
|
||
|
public:
|
||
|
Auto(Snelheid*);
|
||
|
virtual void meetSnelheid();
|
||
|
};
|
||
|
|
||
|
#endif
|