/*********************************************************************\ This Header written by James P. Harmison for the educational purpose of modifying the Marine Biology Case Study issued by the College Board. \*********************************************************************/ #ifndef _DISPLAY_H #define _DISPLAY_H class Environment; class Display { public: Display(); void Show(const Environment & env); private: }; #endif