1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 06:49:55 +00:00
openmw-tes3mp/apps/opencs/view/settings/blankpage.hpp

29 lines
527 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;
/// Derived page with no widgets
/// Reference use only.
2013-05-08 01:33:42 +00:00
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
};
}
#endif // BLANKPAGE_HPP