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