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

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