root/trunk/AlertDlg.h

Revision 5, 1.2 kB (checked in by qbert, 6 years ago)

Initial ( and last :( ) commit

Line 
1 #if !defined(AFX_ALERTDLG_H__168638A8_37D2_4064_B73A_F9D235A7EE94__INCLUDED_)
2 #define AFX_ALERTDLG_H__168638A8_37D2_4064_B73A_F9D235A7EE94__INCLUDED_
3
4 #if _MSC_VER > 1000
5 #pragma once
6 #endif // _MSC_VER > 1000
7 // AlertDlg.h : header file
8 //
9
10 /////////////////////////////////////////////////////////////////////////////
11 // CAlertDlg dialog
12
13 class CAlertDlg : public CDialog
14 {
15 // Construction
16 public:
17     CAlertDlg(CWnd* pParent = NULL);   // standard constructor
18
19 // Dialog Data
20     //{{AFX_DATA(CAlertDlg)
21     enum { IDD = IDD_E_MSG_BOX };
22     CXTButton   m_ok;
23     CString m_msg;
24     //}}AFX_DATA
25
26     void SetMsg(const string& text);
27
28
29 // Overrides
30     // ClassWizard generated virtual function overrides
31     //{{AFX_VIRTUAL(CAlertDlg)
32     protected:
33     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
34     //}}AFX_VIRTUAL
35
36 // Implementation
37 protected:
38
39     // Generated message map functions
40     //{{AFX_MSG(CAlertDlg)
41     virtual BOOL OnInitDialog();
42     afx_msg void OnOk();
43     //}}AFX_MSG
44     DECLARE_MESSAGE_MAP()
45 };
46
47 //{{AFX_INSERT_LOCATION}}
48 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
49
50 #endif // !defined(AFX_ALERTDLG_H__168638A8_37D2_4064_B73A_F9D235A7EE94__INCLUDED_)
Note: See TracBrowser for help on using the browser.