home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / vrac / toolti.zip / ABOUT.H < prev    next >
C/C++ Source or Header  |  1994-06-30  |  918b  |  39 lines

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