// Class: Guest // Inherits from Person // #pragma once #include #include "Person.h" using namespace std; class Guest : public Person { public: Guest(); Guest(string, string, int, int); string getLicensePlate(); int getTimeReserved(); int getGuestTicket(); void createGuestTxt(ofstream &guestData, Person&); virtual void print(); private: int guestticket; int timereserved; string lplate; Person * user; };