home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / PROGRAMS / EM_EDIT / MDTABTDL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-20  |  945 b   |  39 lines

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