home *** CD-ROM | disk | FTP | other *** search
- /* Project xped3
-
- Copyright ⌐ 1993. All Rights Reserved.
-
- SUBSYSTEM: xped3.exe Application
- FILE: xpd3mdi1.cpp
- AUTHOR:
-
-
- OVERVIEW
- ========
- Source file for implementation of xped3MDIChild (TMDIChild).
- */
-
-
- #include <owl\owlpch.h>
- #pragma hdrstop
-
- #include "xped3app.h"
- #include "xpd3mdi1.h"
-
- #include <stdio.h>
-
-
- //{{xped3MDIChild Implementation}}
-
-
- //////////////////////////////////////////////////////////
- // xped3MDIChild
- // ==========
- // Construction/Destruction handling.
- xped3MDIChild::xped3MDIChild (TMDIClient &parent, const char far *title, TWindow *clientWnd, BOOL shrinkToClient, TModule *module)
- : TMDIChild (parent, title, clientWnd == 0 ? new TEditFile(0, 0, 0) : clientWnd, shrinkToClient, module)
- {
- // INSERT>> Your constructor code here.
-
- }
-
-
- xped3MDIChild::~xped3MDIChild ()
- {
- Destroy();
-
- // INSERT>> Your destructor code here.
-
- }
-