home *** CD-ROM | disk | FTP | other *** search
- /* Project emedit
- Early Morning Software
- Copyright ⌐ 1993. All Rights Reserved.
-
- SUBSYSTEM: emedit.exe Application
- FILE: emfind.cpp
- AUTHOR: Ted Stockwell
-
-
- OVERVIEW
- ========
- Source file for implementation of TEmFindDialog (TDialog).
- */
-
- #include <owl\owlpch.h>
- #pragma hdrstop
-
- #include "emfind.h"
-
-
- //{{TEmFindDialog Implementation}}
-
-
- TEmFindDialog::TEmFindDialog (TWindow* parent, TResId resId, TModule* module):
- TDialog(parent, resId, module)
- {
- // INSERT>> Your constructor code here.
-
- }
-
-
- TEmFindDialog::~TEmFindDialog ()
- {
- Destroy();
-
- // INSERT>> Your destructor code here.
-
- }
-
-
-
- //{{TEmReplaceDialog Implementation}}
-
-
- TEmReplaceDialog::TEmReplaceDialog (TWindow* parent, TResId resId, TModule* module):
- TDialog(parent, resId, module)
- {
- // INSERT>> Your constructor code here.
-
- }
-
-
- TEmReplaceDialog::~TEmReplaceDialog ()
- {
- Destroy();
-
- // INSERT>> Your destructor code here.
-
- }
-
-
-
- //{{TEmReplaceConfirmDialog Implementation}}
-
-
- TEmReplaceConfirmDialog::TEmReplaceConfirmDialog (TWindow* parent, TResId resId, TModule* module):
- TDialog(parent, resId, module)
- {
- // INSERT>> Your constructor code here.
-
- }
-
-
- TEmReplaceConfirmDialog::~TEmReplaceConfirmDialog ()
- {
- Destroy();
-
- // INSERT>> Your destructor code here.
-
- }
-
-