// // commerciaux.hpp // Entreprise // // Created by vlaurain on 06/03/2018. // Copyright © 2018 vlaurain. All rights reserved. // #ifndef commerciaux_hpp #define commerciaux_hpp #include "Employe.hpp" class commerciaux:public Employe{ protected: int nb_primes; public: commerciaux(); ~commerciaux(); void set_nb_primes(int primes); }; #endif /* commerciaux_hpp */