#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; }