home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / APXOLE.PAK / APXOMDI1.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  943 b   |  30 lines

  1. //----------------------------------------------------------------------------
  2. //  Project ApxOle
  3. //  Borland International
  4. //  Copyright ⌐ 1996. All Rights Reserved.
  5. //
  6. //  SUBSYSTEM:    ApxOle Application
  7. //  FILE:         apxomdi1.h
  8. //  AUTHOR:       
  9. //
  10. //  OVERVIEW
  11. //  ~~~~~~~~
  12. //  Class definition for TApxOleMDIChild (TMDIChild).
  13. //
  14. //----------------------------------------------------------------------------
  15. #if !defined(apxomdi1_h)              // Sentry, use file only if it's not already included.
  16. #define apxomdi1_h
  17.  
  18. #include "apxolapp.rh"            // Definition of all resources.
  19.  
  20.  
  21. //{{TMDIChild = TApxOleMDIChild}}
  22. class TApxOleMDIChild : public TMDIChild {
  23.   public:
  24.     TApxOleMDIChild(TMDIClient& parent, const char far* title, TWindow* clientWnd, bool shrinkToClient = false, TModule* module = 0);
  25.     virtual ~TApxOleMDIChild();
  26. };    //{{TApxOleMDIChild}}
  27.  
  28.  
  29. #endif  // apxomdi1_h sentry.
  30.