51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
/*=========================================================================
|
|
*
|
|
* DLGAbout.h - Header file for about dialog box class
|
|
*
|
|
* Version 1.0
|
|
* Revision date
|
|
*
|
|
*=======================================================================*/
|
|
#ifndef __DLGABOUT_H__
|
|
#define __DLGABOUT_H__
|
|
|
|
|
|
//--- Includes --------------------------------------------------------
|
|
|
|
#include "Resource.h"
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
/*
|
|
=======================================================================================
|
|
CAboutDlg dialog class
|
|
=======================================================================================
|
|
*/
|
|
|
|
class CAboutDlg : public CDialog
|
|
{
|
|
//data members
|
|
private:
|
|
|
|
// Construction
|
|
public:
|
|
CAboutDlg(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CAboutDlg)
|
|
enum { IDD = IDD_DIALOGABOUT };
|
|
// NOTE: the ClassWizard will add data members here
|
|
//}}AFX_DATA
|
|
|
|
// Implementation
|
|
protected:
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CAboutDlg)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnDestroy();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif //__DLGABOUT_H__
|