www.pudn.com > PBMS.rar > AlertDlg.cpp


// AlertDlg.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "pbms.h" 
#include "AlertDlg.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CAlertDlg dialog 
 
 
CAlertDlg::CAlertDlg(CWnd* pParent /*=NULL*/) 
	: CDialog(CAlertDlg::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CAlertDlg) 
	m_saAlert = _T(""); 
	//}}AFX_DATA_INIT 
} 
 
 
void CAlertDlg::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CAlertDlg) 
	DDX_Text(pDX, IDC_STATIC_ALERT, m_saAlert); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CAlertDlg, CDialog) 
	//{{AFX_MSG_MAP(CAlertDlg) 
		// NOTE: the ClassWizard will add message map macros here 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CAlertDlg message handlers