home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool.zip / OOL / include / xapp.h < prev    next >
Text File  |  1997-02-23  |  1KB  |  31 lines

  1. #ifndef __OOL_XAPPLICATION_H__
  2. #define __OOL_XAPPLICATION_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------- OS/2 Beta 1 */
  6. /*===========================================================================*/
  7. /*                              class: XApplication                          */
  8. /*                       derived from: XProcess                              */
  9. /*                        last update: 12/96                                 */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13.  
  14. #include "xprocess.h"
  15.  
  16.  
  17. class _export_ XApplication: public XProcess
  18. {
  19.       friend class XResourceLibrary;
  20.    private:
  21.       XResourceLibrary * resLib;
  22.    public:
  23.       XApplication();
  24.       virtual ~XApplication();
  25.       XResourceLibrary * GetResourceLibrary(void) const { return resLib; }
  26.       virtual void Terminate( void );
  27. };
  28.  
  29.  
  30. #endif
  31.