home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / basic / emed15 / samples / owl / mdtrplcd.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-05  |  735 b   |  40 lines

  1. /*  Project emedit
  2.     Early Morning Software
  3.     Copyright ⌐ 1993. All Rights Reserved.
  4.  
  5.     SUBSYSTEM:    emedit.exe Application
  6.     FILE:         mdtrplcd.cpp
  7.     AUTHOR:       Ted Stockwell
  8.  
  9.  
  10.     OVERVIEW
  11.     ========
  12.     Source file for implementation of emeditReplaceDialog (TDialog).      
  13. */
  14.  
  15. #include <owl\owlpch.h>
  16. #pragma hdrstop
  17.  
  18. #include "mdtrplcd.h"
  19.  
  20.  
  21. //{{emeditReplaceDialog Implementation}}
  22.  
  23.  
  24. emeditReplaceDialog::emeditReplaceDialog (TWindow* parent, TResId resId, TModule* module):
  25.     TDialog(parent, resId, module)
  26. {
  27.     // INSERT>> Your constructor code here.
  28.  
  29. }
  30.  
  31.  
  32. emeditReplaceDialog::~emeditReplaceDialog ()
  33. {
  34.     Destroy();
  35.  
  36.     // INSERT>> Your destructor code here.
  37.  
  38. }
  39.  
  40.