1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00
OpenMW/apps/opencs/view/settings/blankpage.hpp

31 lines
504 B
C++
Raw Normal View History

2013-05-07 20:33:42 -05:00
#ifndef BLANKPAGE_HPP
#define BLANKPAGE_HPP
#include "abstractpage.hpp"
class QGroupBox;
namespace CsSettings {
class UserSettings;
class AbstractBlock;
class BlankPage : public AbstractPage
{
Q_OBJECT
public:
BlankPage (QWidget *parent = 0);
BlankPage (const QString &title, QWidget *parent);
void setupUi();
void initializeWidgets (const SettingMap &settings);
private:
void initPage();
};
}
#endif // BLANKPAGE_HPP