// // Employe.hpp // Entreprise // // Created by vlaurain on 06/03/2018. // Copyright © 2018 vlaurain. All rights reserved. // #ifndef Employe_hpp #define Employe_hpp #include #include using namespace std; class Employe{ protected: string nom; string prenom; int age; float salaireB; public: //Pas besoin de constructeur vide car on ne créee pas d'employe dans le programme Employe(string unnom,string nprenom, int unage, float unsalaire); // float calcule_salaire() const; void affiche() const; void set_data(string unnom,string unprenom, int unage); ~Employe(); }; #endif /* Employe_hpp */