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