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