home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / basic / emed15 / samples / owl / emfind.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-21  |  1.4 KB  |  82 lines

  1. /*  Project emedit
  2.     Early Morning Software
  3.     Copyright ⌐ 1993. All Rights Reserved.
  4.  
  5.     SUBSYSTEM:    emedit.exe Application
  6.     FILE:         emfind.cpp
  7.     AUTHOR:       Ted Stockwell
  8.  
  9.  
  10.     OVERVIEW
  11.     ========
  12.     Source file for implementation of TEmFindDialog (TDialog).      
  13. */
  14.  
  15. #include <owl\owlpch.h>
  16. #pragma hdrstop
  17.  
  18. #include "emfind.h"
  19.  
  20.  
  21. //{{TEmFindDialog Implementation}}
  22.  
  23.  
  24. TEmFindDialog::TEmFindDialog (TWindow* parent, TResId resId, TModule* module):
  25.     TDialog(parent, resId, module)
  26. {
  27.     // INSERT>> Your constructor code here.
  28.  
  29. }
  30.  
  31.  
  32. TEmFindDialog::~TEmFindDialog ()
  33. {
  34.     Destroy();
  35.  
  36.     // INSERT>> Your destructor code here.
  37.  
  38. }
  39.  
  40.  
  41.  
  42. //{{TEmReplaceDialog Implementation}}
  43.  
  44.  
  45. TEmReplaceDialog::TEmReplaceDialog (TWindow* parent, TResId resId, TModule* module):
  46.     TDialog(parent, resId, module)
  47. {
  48.     // INSERT>> Your constructor code here.
  49.  
  50. }
  51.  
  52.  
  53. TEmReplaceDialog::~TEmReplaceDialog ()
  54. {
  55.     Destroy();
  56.  
  57.     // INSERT>> Your destructor code here.
  58.  
  59. }
  60.  
  61.  
  62.  
  63. //{{TEmReplaceConfirmDialog Implementation}}
  64.  
  65.  
  66. TEmReplaceConfirmDialog::TEmReplaceConfirmDialog (TWindow* parent, TResId resId, TModule* module):
  67.     TDialog(parent, resId, module)
  68. {
  69.     // INSERT>> Your constructor code here.
  70.  
  71. }
  72.  
  73.  
  74. TEmReplaceConfirmDialog::~TEmReplaceConfirmDialog ()
  75. {
  76.     Destroy();
  77.  
  78.     // INSERT>> Your destructor code here.
  79.  
  80. }
  81.  
  82.