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

  1. #if !defined(__mdtrplcd_h)              // Sentry, use file only if it's not already included.
  2. #define __mdtrplcd_h
  3.  
  4. /*  Project emedit
  5.     Early Morning Software
  6.     Copyright ⌐ 1993. All Rights Reserved.
  7.  
  8.     SUBSYSTEM:    emedit.exe Application
  9.     FILE:         mdtrplcd.h
  10.     AUTHOR:       Ted Stockwell
  11.  
  12.  
  13.     OVERVIEW
  14.     ========
  15.     Class definition for emeditReplaceDialog (TDialog).      
  16. */
  17.  
  18. #include <owl\owlpch.h>
  19. #pragma hdrstop
  20.  
  21. #include <owl\dialog.h>
  22.  
  23. #include "emedtapp.rh"            // Definition of all resources.
  24.  
  25.  
  26. //{{TDialog = emeditReplaceDialog}}
  27. class emeditReplaceDialog : public TDialog {
  28. public:
  29.     emeditReplaceDialog (TWindow* parent, TResId resId = IDD_EMREPLACE, TModule* module = 0);
  30.     virtual ~emeditReplaceDialog ();
  31. };    //{{emeditReplaceDialog}}
  32.  
  33.  
  34. #endif                                      // __mdtrplcd_h sentry.
  35.  
  36.