css_enhanced_waf/hammer/dynamicdialogwnd.h

47 lines
1,010 B
C
Raw Normal View History

2020-04-22 17:56:21 +01:00
//========= 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;
};
/////////////////////////////////////////////////////////////////////////////