////////////////////////////////////////////////////////////////// // // personmain.cpp // // Started by Jeff Ondich on 4/15/98 // Last modified 4/15/98 // // This program tests the Person class. // ////////////////////////////////////////////////////////////////// #include #include #include "person.h" int main( void ) { string name = "Sam"; Person firstPerson( name, 1990, 6, 10 ); Person secondPerson; cout << firstPerson.Age(1998,4,15) << endl; firstPerson.GetName( name ); cout << name << endl; cout << secondPerson.Age(1998,4,15) << endl; secondPerson.GetName( name ); cout << name << endl; return( 0 ); }