#ifndef PERSON_H #define PERSON_H #include #include using namespace std ; class Person { private: string firstName ; string lastName ; int age ; public: void print() ; void setData( string firstNameP, string lastNameP , int ageP ) ; }; #endif