1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-23 21:23:53 +00:00
openmw/apps/opencs/view/settings/blankpage.hpp

30 lines
501 B
C++
Raw Normal View History

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