#include "ct_outopfnodegroupmodel.h" template CT_OutOPFNodeGroupModel::CT_OutOPFNodeGroupModel(const QString& displayableName, const QString& shortDescription, const QString& detailledDescription, OPFGroup* prototype) : SuperClass(displayableName, shortDescription, detailledDescription, prototype) { m_level = 0; } template void CT_OutOPFNodeGroupModel::setOPFLevel(const quint8 &level) { m_level = level; } template quint8 CT_OutOPFNodeGroupModel::opfLevel() const { return m_level; } template CT_OutAbstractModel* CT_OutOPFNodeGroupModel::copy() const { return new CT_OutOPFNodeGroupModel(*this); }