SWADP/Opdracht_4/inc/UI.h
Shaquille Soekhlal 7723e68186 Opdracht 4 code en design
Co-authored-by: Aryan Lala (19097727) <A.E.Lala@student.hhs.nl>
2023-06-11 16:15:15 +02:00

17 lines
219 B
C++

#ifndef __UI_H
#define __UI_H
class TsensorImpl;
#include "Observer.h"
class UI : public Observer{
private:
TsensorImpl* t;
public:
UI(TsensorImpl*);
virtual ~UI(){};
virtual void update();
};
#endif