css_enhanced_waf/hammer/dynamicdialogwnd.h
FluorescentCIAAfricanAmerican 3bf9df6b27 1
2020-04-22 12:56:21 -04:00

46 lines
1,010 B
C++

//========= 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;
};
/////////////////////////////////////////////////////////////////////////////