home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cl-lib07.zip / pm.zip / usr / include / pm / stdapp.h < prev    next >
C/C++ Source or Header  |  1995-06-27  |  272b  |  25 lines

  1. #ifndef _STDAPP_H_
  2. #define _STDAPP_H_
  3.  
  4. #define INCL_PM
  5. #include <objc/os2.h>
  6. #include <objc/Object.h>
  7.  
  8. @interface StdApp : Object
  9. {
  10.   HAB    hab;
  11.   HMQ    hmq;
  12. }
  13.  
  14. - init;
  15. - free;
  16. - run;
  17.  
  18. - (HAB) hab;
  19.  
  20. - loadIBFile: (char *) fileName;
  21.  
  22. @end
  23.  
  24. #endif
  25.