SWADP/Opdracht_4/inc/UI.h

17 lines
219 B
C
Raw Normal View History

#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