home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / uidemo / dialog2 / appwin.h < prev    next >
C/C++ Source or Header  |  1995-04-08  |  282b  |  24 lines

  1.  
  2.  
  3. #ifndef _appwin_h_
  4. #define _appwin_h_
  5.  
  6. #include "ui/composit.h"
  7. #include "ui/label.h"
  8.  
  9. class AppWindow: public UI_CompositeVObject {
  10.  
  11. public:
  12.  
  13.     AppWindow (); 
  14.  
  15. protected:
  16.  
  17.     bool HandleChildEvent(const UI_Event& e);
  18.     
  19.     UI_Label* msg;
  20. };
  21.  
  22.  
  23. #endif
  24.