Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. class CMoteur
  6. {
  7. protected :
  8.  
  9. int PuissanceDynamique ;
  10. string NumSerie ;
  11.  
  12. public :
  13.  
  14. bool Demarrer() ;
  15. bool Arreter() ;
  16. void Afficher() ;
  17. CMoteur(int, string) ;
  18. } ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement