Advertisement
Guest User

Untitled

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