// // Representant.hpp // Entreprise // // Created by vlaurain on 06/03/2018. // Copyright © 2018 vlaurain. All rights reserved. // #ifndef Representant_hpp #define Representant_hpp #include "commerciaux.hpp" class Representant:public commerciaux{ protected: int nb_dep; public: Representant(); ~Representant(); void set_nb_dep(int deps); float calcule_salaire() const; void affiche() const; }; #endif /* Representant_hpp */