36 lines
729 B
C++
36 lines
729 B
C++
// SettingSheet.cpp : 구현 파일입니다.
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "SUNAutoScriptMaker.h"
|
|
#include "SettingSheet.h"
|
|
|
|
|
|
// CSettingSheet
|
|
|
|
IMPLEMENT_DYNAMIC(CSettingSheet, CPropertySheet)
|
|
CSettingSheet::CSettingSheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
|
|
:CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
|
|
{
|
|
}
|
|
|
|
CSettingSheet::CSettingSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
|
|
:CPropertySheet(pszCaption, pParentWnd, iSelectPage)
|
|
{
|
|
AddPage( &m_SunServerPage );
|
|
AddPage( &m_WorldPage );
|
|
AddPage( &m_GuildPage );
|
|
AddPage( &m_MasterPage );
|
|
}
|
|
|
|
CSettingSheet::~CSettingSheet()
|
|
{
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CSettingSheet, CPropertySheet)
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
// CSettingSheet 메시지 처리기입니다.
|