Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "Vehicles.h"
- #include <iostream>
- #include <string>
- #ifndef CAR_H
- #define CAR_H
- using namespace std;
- class Car : public Vehicles
- {
- private:
- int cNumOfDoors;
- public:
- Car(string, string, double, double, int);
- int GetNumDoors();
- void SetNumDoors(int);
- void Display();
- };
- #endif
Add Comment
Please, Sign In to add comment