openmw-tes3coop/apps/opencs/view/prefs/pagebase.hpp
2017-05-06 20:18:31 +12:00

31 lines
455 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();
public slots:
void resetCategory();
};
}
#endif