home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / vrac / dlgcbr.zip / ABOUTDLG.H < prev    next >
C/C++ Source or Header  |  1994-06-30  |  1KB  |  46 lines

  1. /*****************************************************************************
  2.   ABOUTDLG.H
  3.  
  4.   Purpose:  
  5.       Interface for CAboutDlg, which displays the application About Box.
  6.  
  7.   Functions:
  8.     CAboutDlg::CAboutDlg()          -- constructor
  9.     CAboutDlg::DoDataExchange()     -- dialog data exchange/validation
  10.     CAboutDlg::OnInitDialog()        -- initialize dialog
  11.  
  12.   Development Team:
  13.       Mary Kirtland
  14.  
  15.   Written by Microsoft Product Support Services, Premier ISV Support
  16.   Copyright (c) 1994 Microsoft Corporation. All rights reserved.
  17. \****************************************************************************/
  18.           
  19. #ifndef __ABOUTDLG_H__
  20.     #define __ABOUTDLG_H__
  21.               
  22. class CAboutDlg : public CDialog
  23. {
  24. // Construction
  25. public:
  26.     CAboutDlg(CWnd* pParent = NULL);    // standard constructor
  27.  
  28. // Dialog Data
  29.     //{{AFX_DATA(CAboutDlg)
  30.     enum { IDD = IDD_ABOUT };
  31.     //}}AFX_DATA
  32.                
  33. // Overrides
  34. protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     virtual BOOL OnInitDialog();
  37.  
  38. // Implementation
  39. protected:
  40.     // Generated message map functions
  41.     //{{AFX_MSG(CAboutDlg)
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46. #endif //__ABOUTDLG_H__