#ifndef person_h // if we have not defined person #define person_h // then define person // person can't be defined twice or our program will NOT link class person { public: // these methods can be seen by other classes person(); // this is my constructor // it will automatically run when my object // is created void feed(int); void grow(int); int getWeight(); int getHeight(); char getGender(); void setGender(char); private: // these variables can NOT be seen by other code int weight; char gender; int height; }; // <----- Don't forget the semi-colon #endif // end the definition of person