home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / wvplr1 / aboutdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-25  |  922 b   |  39 lines

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