1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-29 03:19:44 +00:00
OpenMW/apps/launcher/settingspage.hpp

21 lines
305 B
C++
Raw Normal View History

2014-01-27 19:14:02 +00:00
#ifndef SETTINGSPAGE_HPP
#define SETTINGSPAGE_HPP
#include <QWidget>
#include "ui_settingspage.h"
namespace Launcher
{
class SettingsPage : public QWidget, private Ui::SettingsPage
{
Q_OBJECT
public:
SettingsPage(QWidget *parent = 0);
};
}
#endif // SETTINGSPAGE_HPP