48 lines
1.1 KiB
C++
48 lines
1.1 KiB
C++
/*
|
|
=======================================================================================
|
|
Name : DLGWarning.h
|
|
|
|
Author : Mihaela Tancu
|
|
|
|
Description : Header file for about dialog box class
|
|
=======================================================================================
|
|
*/
|
|
#include "Resource.h"
|
|
|
|
#ifndef __DLGWARNING_H__
|
|
#define __DLGWARNING_H__
|
|
|
|
/*
|
|
=======================================================================================
|
|
CDlgWarning dialog class
|
|
=======================================================================================
|
|
*/
|
|
|
|
class CDlgWarning : public CDialog
|
|
{
|
|
//data members
|
|
private:
|
|
|
|
// Construction
|
|
public:
|
|
CDlgWarning(CWnd* pParent = NULL); // standard constructor
|
|
CStatic *m_oStatic;
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CDlgWarning)
|
|
enum { IDD = IDD_DIALOGWARNING };
|
|
// NOTE: the ClassWizard will add data members here
|
|
//}}AFX_DATA
|
|
|
|
// Implementation
|
|
protected:
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CDlgWarning)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnDestroy();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif /*__DLGWARNING_H__*/
|