OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
pagebase.hpp
Go to the documentation of this file.
1 #ifndef CSV_PREFS_PAGEBASE_H
2 #define CSV_PREFS_PAGEBASE_H
3 
4 #include <QScrollArea>
5 
6 namespace CSMPrefs
7 {
8  class Category;
9 }
10 
11 namespace CSVPrefs
12 {
13  class PageBase : public QScrollArea
14  {
15  Q_OBJECT
16 
18 
19  public:
20 
21  PageBase (CSMPrefs::Category& category, QWidget *parent);
22 
24  };
25 }
26 
27 #endif
CSMPrefs::Category & getCategory()
Definition: pagebase.cpp:10
PageBase(CSMPrefs::Category &category, QWidget *parent)
Definition: pagebase.cpp:6
Definition: category.hpp:12
CSMPrefs::Category & mCategory
Definition: pagebase.hpp:17
Definition: pagebase.hpp:13