home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tybc4 / xped3 / xpd3mdi1.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-13  |  967 b   |  47 lines

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