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

#include "TsensorImpl.h"
#include <iostream>
TsensorImpl::TsensorImpl(): temperatuur(0){
}
void TsensorImpl::read(){
std::cout << "Voer een temperatuur in: ";
std::cin >> temperatuur;
std::cout << endl;
notify();
}
int TsensorImpl::temperature(){
return temperatuur;
}