Crossfire Server, Branch 1.12  R12190
CREArchetypePanel.cpp
Go to the documentation of this file.
00001 #include <Qt>
00002 
00003 extern "C" {
00004 #include "global.h"
00005 }
00006 
00007 #include "CREArchetypePanel.h"
00008 #include "CREUtils.h"
00009 
00010 CREArchetypePanel::CREArchetypePanel()
00011 {
00012     QGridLayout* layout = new QGridLayout(this);
00013 
00014     QLabel* label = new QLabel(this);
00015     label->setText("Name:");
00016     layout->addWidget(label, 1, 1);
00017 }
00018 
00019 void CREArchetypePanel::setArchetype(const archt* archetype)
00020 {
00021     myArchetype = archetype;
00022 }