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