home *** CD-ROM | disk | FTP | other *** search
- /* Project xped5
-
- Copyright ⌐ 1993. All Rights Reserved.
-
- SUBSYSTEM: xped5.exe Application
- FILE: xpd5mdic.cpp
- AUTHOR:
-
-
- OVERVIEW
- ========
- Source file for implementation of xped5MDIClient (TMDIClient).
- */
-
-
- #include <owl\owlpch.h>
- #pragma hdrstop
-
-
- #include "xped5app.h"
- #include "xpd5mdic.h"
- #include "xpd5mdi1.h"
-
-
- //{{xped5MDIClient Implementation}}
-
-
- //
- // Build a response table for all messages/commands handled
- // by xped5MDIClient derived from TMDIClient.
- //
- DEFINE_RESPONSE_TABLE1(xped5MDIClient, TMDIClient)
- //{{xped5MDIClientRSP_TBL_BEGIN}}
- //{{xped5MDIClientRSP_TBL_END}}
- END_RESPONSE_TABLE;
-
-
- //////////////////////////////////////////////////////////
- // xped5MDIClient
- // ===========
- // Construction/Destruction handling.
- xped5MDIClient::xped5MDIClient ()
- : TMDIClient ()
- {
- ChildCount = 0;
-
- // INSERT>> Your constructor code here.
-
- }
-
-
- xped5MDIClient::~xped5MDIClient ()
- {
- Destroy();
-
- // INSERT>> Your destructor code here.
-
- }
-
-
- //////////////////////////////////////////////////////////
- // xped5MDIClient
- // ===========
- // MDIClient site initialization.
- void xped5MDIClient::SetupWindow ()
- {
- // Default SetUpWindow processing.
- TMDIClient::SetupWindow ();
-
- }
-
-
-