home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / MotifApp / Extras / bounce / ControlPanel.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-03  |  446 b   |  21 lines

  1. //////////////////////////////////////////////////////////
  2. // ControlPanel.h: 
  3. //////////////////////////////////////////////////////////
  4. #ifndef CONTROLPANEL_H
  5. #define CONTROLPANEL_H
  6. #include "UIComponent.h"
  7.  
  8. class Clock;
  9.  
  10. class ControlPanel : public UIComponent {
  11.     
  12. protected:    
  13.     
  14. public:
  15.     
  16.     ControlPanel ( Widget, char *, Clock *clock );
  17.     
  18.     virtual const char *const className() { return ( "ControlPanel" ); }
  19. };
  20. #endif   
  21.