project64/Source/Project64/User Interface/Settings/Settings Page.cpp

45 lines
1.4 KiB
C++
Raw Normal View History

2012-12-19 09:30:18 +00:00
/****************************************************************************
* *
* Project 64 - A Nintendo 64 emulator. *
* http://www.pj64-emu.com/ *
* Copyright (C) 2012 Project64. All rights reserved. *
* *
* License: *
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
* *
****************************************************************************/
#include "stdafx.h"
2015-09-07 19:47:44 +00:00
#ifdef WINDOWS_UI
#include "Settings Page.h"
CConfigSettingSection::CConfigSettingSection( LPCWSTR PageTitle ) :
m_PageTitle(PageTitle)
{
}
CConfigSettingSection::~CConfigSettingSection ()
{
for (size_t i = 0; i < m_Pages.size(); i++)
{
2012-10-04 12:01:08 +00:00
CSettingsPage * Page = m_Pages[i];
delete Page;
}
m_Pages.clear();
}
void CConfigSettingSection::AddPage(CSettingsPage * Page )
{
m_Pages.push_back(Page);
}
CSettingsPage * CConfigSettingSection::GetPage ( int PageNo )
{
if (PageNo < 0 || PageNo >= (int)m_Pages.size())
{
return NULL;
}
return m_Pages[PageNo];
}
2015-09-07 19:47:44 +00:00
#endif