// one.h // Include file for problem 1, exam 2 // CS210 - S'03 - 3/20/03 - Ray S. Babcock // #ifndef ONE_H_ #define ONE_H_ class ClassOne { public: ClassOne(); int getSize(); char getCode(); private: int size; char code; }; class ClassTwo { public: ClassTwo(); int getAge(); char getInit(); private: int age; char init; }; #endif