Opdracht 2 code en design af*

Co-authored-by: Aryan Lala (19097727) <A.E.Lala@student.hhs.nl>
This commit is contained in:
Shaquille Soekhlal 2023-04-28 13:36:52 +02:00
parent 692703749e
commit 4402579235

View File

@ -0,0 +1,14 @@
#ifndef __DigitaleMeter_H
#define __DigitaleMeter_H
#include "Observer.h"
using namespace std;
class Snelheid;
class DigitaleMeter : public Observer{
public: DigitaleMeter(Snelheid*);
virtual void update();
};
#endif