Crossfire Server, Branches 1.12  R18729
CRETreeItem.h
Go to the documentation of this file.
1 #ifndef CRETREEITEM_H
2 #define CRETREEITEM_H
3 
4 #include <QObject>
5 #include <Qt>
6 #include <QHash>
7 #include <QPointer>
8 
9 class CRETreeItem : public QObject
10 {
11  Q_OBJECT
12 
13  public:
14  virtual QString getPanelName() const = 0;
15  virtual void fillPanel(QWidget* panel) = 0;
16 };
17 
18 #endif // CRETREEITEM_H
virtual QString getPanelName() const =0
virtual void fillPanel(QWidget *panel)=0