SWADP/Opdracht_4/inc/TsensorImpl.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
326 B
C++

#ifndef __TsensorImpl_H
#define __TsensorImpl_H
#include "Tsensor.h"
#include "Observer.h"
class TsensorImpl : public Tsensor, public Subject{
private:
int temperatuur;
public:
TsensorImpl();
virtual ~TsensorImpl(){};
virtual void read();
virtual int temperature();
};
#endif