home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tybc4 / xped5 / xpd5mdic.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-13  |  1.3 KB  |  73 lines

  1. /*  Project xped5
  2.     
  3.     Copyright ⌐ 1993. All Rights Reserved.
  4.  
  5.     SUBSYSTEM:    xped5.exe Application
  6.     FILE:         xpd5mdic.cpp
  7.     AUTHOR:       
  8.  
  9.  
  10.     OVERVIEW
  11.     ========
  12.     Source file for implementation of xped5MDIClient (TMDIClient).      
  13. */
  14.  
  15.  
  16. #include <owl\owlpch.h>
  17. #pragma hdrstop
  18.  
  19.  
  20. #include "xped5app.h"
  21. #include "xpd5mdic.h"
  22. #include "xpd5mdi1.h"
  23.  
  24.  
  25. //{{xped5MDIClient Implementation}}
  26.  
  27.  
  28. //
  29. // Build a response table for all messages/commands handled
  30. // by xped5MDIClient derived from TMDIClient.
  31. //
  32. DEFINE_RESPONSE_TABLE1(xped5MDIClient, TMDIClient)
  33. //{{xped5MDIClientRSP_TBL_BEGIN}}
  34. //{{xped5MDIClientRSP_TBL_END}}
  35. END_RESPONSE_TABLE;
  36.  
  37.  
  38. //////////////////////////////////////////////////////////
  39. // xped5MDIClient
  40. // ===========
  41. // Construction/Destruction handling.
  42.  xped5MDIClient::xped5MDIClient ()
  43.  : TMDIClient ()
  44. {
  45.     ChildCount = 0;
  46.  
  47.     // INSERT>> Your constructor code here.
  48.  
  49. }
  50.  
  51.  
  52.  xped5MDIClient::~xped5MDIClient ()
  53. {
  54.     Destroy();
  55.  
  56.     // INSERT>> Your destructor code here.
  57.  
  58. }
  59.  
  60.  
  61. //////////////////////////////////////////////////////////
  62. // xped5MDIClient
  63. // ===========
  64. // MDIClient site initialization.
  65. void xped5MDIClient::SetupWindow ()
  66. {
  67.     // Default SetUpWindow processing.
  68.     TMDIClient::SetupWindow ();
  69.  
  70. }
  71.  
  72.  
  73.