Crossfire Server, Branch 1.12  R12190
CRETreeItemFace.h
Go to the documentation of this file.
00001 #ifndef CLASS_CRE_TREEITEM_FACE_H
00002 #define CLASS_CRE_TREEITEM_FACE_H
00003 
00004 #include <QObject>
00005 
00006 #include "CRETreeItem.h"
00007 
00008 extern "C" {
00009 #include "global.h"
00010 }
00011 
00012 class CRETreeItemFace : public CRETreeItem
00013 {
00014     Q_OBJECT
00015     public:
00016         CRETreeItemFace(const New_Face* face);
00017         virtual ~CRETreeItemFace();
00018 
00019         virtual QString getPanelName() const  { return "Face"; }
00020         virtual void fillPanel(QWidget* panel);
00021 
00022     protected:
00023         const New_Face* myFace;
00024 
00025 };
00026 
00027 #endif // CLASS_CRE_TREEITEM_FACE_H