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

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