SWADP/Opdracht_2/Auto.h
Hello_User 0ae21fa8ab Fix opdracht 1 en 2
Co-authored-by: Aryan Lala (19097727) <A.E.Lala@student.hhs.nl>
2023-05-11 10:40:01 +02:00

17 lines
227 B
C++

#ifndef _Auto_H
#define _Auto_H
using namespace std;
class Snelheid;
class Auto{
private:
Snelheid* S;
public:
Auto(Snelheid*);
virtual ~Auto();
virtual void meetSnelheid();
};
#endif