22 lines
294 B
C++
22 lines
294 B
C++
#include "../include/Capteur.h"
|
|
|
|
|
|
|
|
Capteur::Capteur(String type, String fullVall){
|
|
this->type = type;
|
|
this->fullVall = fullVall;
|
|
}
|
|
|
|
bool Capteur::tar(int val){
|
|
return true;
|
|
}
|
|
|
|
|
|
bool Capteur::isFull(){
|
|
return this->full;
|
|
}
|
|
|
|
|
|
String Capteur::getValType(){
|
|
return this->type;
|
|
} |