home *** CD-ROM | disk | FTP | other *** search
- //////////////////////////////////////////////////////////
- // ControlPanel.h:
- //////////////////////////////////////////////////////////
- #ifndef CONTROLPANEL_H
- #define CONTROLPANEL_H
- #include "UIComponent.h"
-
- class Clock;
-
- class ControlPanel : public UIComponent {
-
- protected:
-
- public:
-
- ControlPanel ( Widget, char *, Clock *clock );
-
- virtual const char *const className() { return ( "ControlPanel" ); }
- };
- #endif
-