////////////////////////////////////////////////////////////////// // // person.h // // Started by Jeff Ondich on 4/15/98 // Last modified 4/15/98 // // This is the interface for a simple class that // represents a single person. // ////////////////////////////////////////////////////////////////// #include class Person { private: string mName; int mBirthYear; int mBirthMonth; int mBirthDay; public: // Constructors Person( const string& name, int year, int month, int day ); Person( void ); // Data accessors void SetName( const string& name ); void GetName( string& name ); // Something else int Age( int currentYear, int currentMonth, int currentDay ); };