Guest User

Untitled

a guest
Feb 2nd, 2016
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #include "Vehicles.h"
  2. #include <iostream>
  3. #include <string>
  4. #ifndef CAR_H
  5. #define CAR_H
  6.  
  7.  
  8. using namespace std;
  9.  
  10. class Car : public Vehicles
  11.  
  12. {
  13.  
  14.  
  15. private:
  16.  
  17. int cNumOfDoors;
  18.  
  19. public:
  20.  
  21. Car(string, string, double, double, int);
  22.  
  23. int GetNumDoors();
  24. void SetNumDoors(int);
  25.  
  26. void Display();
  27.  
  28.  
  29.  
  30. };
  31. #endif
Add Comment
Please, Sign In to add comment