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

  1. #define INCL_OOL_WIN
  2. #define INCL_OOL_JAVA
  3.  
  4. #include "ool.h"
  5. #include "resource.h"
  6.  
  7.  
  8.  
  9. // Main frame window
  10. class MyWindow : public XFrameWindow
  11. {
  12.         private:
  13.                 XJavaApplet* pApplet;
  14.         public:
  15.                 // ctor/dtor
  16.                          MyWindow( );
  17. };
  18.  
  19.  
  20.