/////////////////////////////////////////////////////////////// // // frontend.h // // Interface for a simple class that helps organize // curses-based user interfaces. // // Jeff Ondich, 6/1/03 // /////////////////////////////////////////////////////////////// const int kUserTextBufferSize = 30; class FrontEnd { private: char mUserText[kUserTextBufferSize]; void DrawScreen(); public: FrontEnd(); virtual ~FrontEnd(); void Run(); };