#ifndef VEHICLE_H #define VEHICLE_H #include #include #include "Person.h" using namespace std; class Vehicle { public: Vehicle(); Vehicle(string N, int num, Person O); string getName() const; int getNumOfCylinders() const; Person getOwner() const; private: string name; int numOfCylinders; Person owner; }; #endif