blob: 514a1e8e3f437e5c6132eef6c2fc1b27b38ea634 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
// DynamicDialogWnd.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CDynamicDialogWnd window
class CDynamicDialogWnd : public CWnd
{
// Construction
public:
CDynamicDialogWnd(CWnd *pParent);
// Attributes
public:
// Operations
public:
void SetDialogClass(UINT nID, CDialog *pDialog);
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDynamicDialogWnd)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CDynamicDialogWnd();
// Generated message map functions
protected:
//{{AFX_MSG(CDynamicDialogWnd)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
CDialog *m_pDialog;
};
/////////////////////////////////////////////////////////////////////////////
|