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

  1. //----------------------------------------------------------------------------
  2. //  Project ApxOle
  3. //  Borland International
  4. //  Copyright ⌐ 1996. All Rights Reserved.
  5. //
  6. //  SUBSYSTEM:    ApxOle Application
  7. //  FILE:         apxomdi1.cpp
  8. //  AUTHOR:       
  9. //
  10. //  OVERVIEW
  11. //  ~~~~~~~~
  12. //  Source file for implementation of TApxOleMDIChild (TMDIChild).
  13. //
  14. //----------------------------------------------------------------------------
  15.  
  16. #include <owl/pch.h>
  17.  
  18. #include "apxolapp.h"
  19. #include "apxomdi1.h"
  20.  
  21.  
  22. //{{TApxOleMDIChild Implementation}}
  23.  
  24.  
  25. //--------------------------------------------------------
  26. // TApxOleMDIChild
  27. // ~~~~~~~~~~
  28. // Construction/Destruction handling.
  29. //
  30. TApxOleMDIChild::TApxOleMDIChild(TMDIClient& parent, const char far* title, TWindow* clientWnd, bool shrinkToClient, TModule* module)
  31. :
  32.   TMDIChild(parent, title, clientWnd, shrinkToClient, module)
  33. {
  34.   // INSERT>> Your constructor code here.
  35.  
  36. }
  37.  
  38.  
  39. TApxOleMDIChild::~TApxOleMDIChild()
  40. {
  41.   Destroy();
  42.  
  43.   // INSERT>> Your destructor code here.
  44.  
  45. }
  46.