home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / samples / sample7 / sample7.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-10  |  323 b   |  17 lines

  1. #define INCL_OOL_WIN
  2. #include "ool.h"
  3.  
  4. class MyAppWindow: public XFrameWindow
  5. {
  6.    public:
  7.       MyAppWindow();
  8.       BOOL QueryForClose();
  9.       void Draw( void );
  10.       BOOL DoCommand(LONG);
  11.    private:
  12.       XToolBar * toolBar;
  13.       XGraphicDevice * graphWindow, * graphMemory;
  14.       XLayer layer;
  15. };
  16.  
  17.