/***************************************************************************** * * Copyright (c) 1999, KL GROUP INC. All Rights Reserved. * http://www.klgroup.com * * This file is provided for demonstration and educational uses only. * Permission to use, copy, modify and distribute this file for * any purpose and without fee is hereby granted, provided that the * above copyright notice and this permission notice appear in all * copies, and that the name of KL Group not be used in advertising * or publicity pertaining to this material without the specific, * prior written permission of an authorized representative of * KL Group. * * KL GROUP MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY * OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR * PURPOSE, OR NON-INFRINGEMENT. KL GROUP SHALL NOT BE LIABLE FOR ANY * DAMAGES SUFFERED BY USERS AS A RESULT OF USING, MODIFYING OR * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. */ /* Project oc2owl OVERVIEW ======== Source file for implementation of oc2owlMDIChild (TMDIChild). */ #include #pragma hdrstop #include "oc2wlapp.h" #include "oc2wmdi1.h" //{{oc2owlMDIChild Implementation}} ////////////////////////////////////////////////////////// // oc2owlMDIChild // ========== // Construction/Destruction handling. oc2owlMDIChild::oc2owlMDIChild (TMDIClient &parent, const char far *title, TWindow *clientWnd, bool shrinkToClient, TModule *module) : TMDIChild (parent, title, clientWnd, shrinkToClient, module) { // INSERT>> Your constructor code here. } oc2owlMDIChild::~oc2owlMDIChild () { Destroy(); // INSERT>> Your destructor code here. }