www.pudn.com > agentnet.zip > SetupSheet.cpp


// SetupSheet.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "AgentNetServer.h" 
#include "SetupSheet.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CSetupSheet 
 
IMPLEMENT_DYNAMIC(CSetupSheet, CPropertySheet) 
 
CSetupSheet::CSetupSheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage) 
	:CPropertySheet(nIDCaption, pParentWnd, iSelectPage) 
{ 
} 
 
CSetupSheet::CSetupSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage) 
	:CPropertySheet(pszCaption, pParentWnd, iSelectPage) 
{ 
} 
 
CSetupSheet::~CSetupSheet() 
{ 
} 
 
 
BEGIN_MESSAGE_MAP(CSetupSheet, CPropertySheet) 
	//{{AFX_MSG_MAP(CSetupSheet) 
		// NOTE - the ClassWizard will add and remove mapping macros here. 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CSetupSheet message handlers