SWADP/Opdracht_2/Auto.h

16 lines
202 B
C
Raw Normal View History

2023-04-28 11:36:57 +00:00
#ifndef _Auto_H
#define _Auto_H
using namespace std;
class Snelheid;
class Auto{
private:
Snelheid* S;
public:
Auto(Snelheid*);
virtual void meetSnelheid();
};
#endif