// // Interimaire.hpp // Entreprise // // Created by vlaurain on 06/03/2018. // Copyright © 2018 vlaurain. All rights reserved. // #ifndef Interimaire_hpp #define Interimaire_hpp #include "Technicien.hpp" class Interimaire: public Technicien{ protected: int nb_heures; public: Interimaire(); ~Interimaire(); float calcule_salaire() const; void affiche() const; void set_nb_heures(int h); }; #endif /* Interimaire_hpp */