mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 05:53:50 +00:00
28 lines
412 B
C++
28 lines
412 B
C++
|
#ifndef CSV_PREFS_PAGEBASE_H
|
||
|
#define CSV_PREFS_PAGEBASE_H
|
||
|
|
||
|
#include <QScrollArea>
|
||
|
|
||
|
namespace CSMPrefs
|
||
|
{
|
||
|
class Category;
|
||
|
}
|
||
|
|
||
|
namespace CSVPrefs
|
||
|
{
|
||
|
class PageBase : public QScrollArea
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
CSMPrefs::Category& mCategory;
|
||
|
|
||
|
public:
|
||
|
|
||
|
PageBase (CSMPrefs::Category& category, QWidget *parent);
|
||
|
|
||
|
CSMPrefs::Category& getCategory();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|