//---------------------------------------------------------------------------- // Project Rect // jyu // Copyright © Vesa Lappalainen 1996. All Rights Reserved. // // SUBSYSTEM: Rect Application // FILE: rctmdich.cpp // AUTHOR: vl // // OVERVIEW // ~~~~~~~~ // Source file for implementation of TRectMDIChild (TMDIChild). // //---------------------------------------------------------------------------- #include #include "rectapp.h" #include "rctmdich.h" //{{TRectMDIChild Implementation}} //-------------------------------------------------------- // TRectMDIChild // ~~~~~~~~~~ // Construction/Destruction handling. // TRectMDIChild::TRectMDIChild(TMDIClient& parent, const char far* title, TWindow* clientWnd, bool shrinkToClient, TModule* module) : TMDIChild(parent, title, clientWnd, shrinkToClient, module) { // INSERT>> Your constructor code here. } TRectMDIChild::~TRectMDIChild() { Destroy(); // INSERT>> Your destructor code here. }