Crossfire Server, Branch 1.12  R12190
CRETreeItem.h
Go to the documentation of this file.
00001 #ifndef CRETREEITEM_H
00002 #define CRETREEITEM_H
00003 
00004 #include <QObject>
00005 #include <Qt>
00006 #include <QHash>
00007 #include <QPointer>
00008 
00009 class CRETreeItem : public QObject
00010 {
00011     Q_OBJECT
00012 
00013     public:
00014         virtual QString getPanelName() const = 0;
00015         virtual void fillPanel(QWidget* panel) = 0;
00016 };
00017 
00018 #endif // CRETREEITEM_H