home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / classlib.zip / pm.zip / usr / include / pm / stdapp.h < prev    next >
C/C++ Source or Header  |  1994-08-31  |  234b  |  23 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. @end
  21.  
  22. #endif
  23.