1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
440 B
C++
Raw Normal View History

2015-12-08 17:21:58 +01:00
#ifndef CSV_PREFS_PAGE_H
#define CSV_PREFS_PAGE_H
#include "pagebase.hpp"
class QGridLayout;
2022-10-19 19:02:00 +02:00
class QWidget;
class QObject;
2015-12-08 17:21:58 +01:00
namespace CSMPrefs
{
2022-10-19 19:02:00 +02:00
class Category;
2015-12-08 17:21:58 +01:00
class Setting;
}
namespace CSVPrefs
{
class Page : public PageBase
{
Q_OBJECT
QGridLayout* mGrid;
public:
Page(CSMPrefs::Category& category, QWidget* parent);
void addSetting(CSMPrefs::Setting* setting);
};
}
#endif