openmw-tes3coop/apps/opencs/view/prefs/pagebase.hpp
PlutonicOverkill a9760ec805 Fix indenting
2017-05-07 17:07:58 +12:00

35 lines
552 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();
private:
virtual void refresh() {};
};
}
#endif