mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
21 lines
305 B
C++
21 lines
305 B
C++
#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
|