8 lines
199 B
C++
8 lines
199 B
C++
#include "labelwidget.h"
|
|
|
|
LabelWidget::LabelWidget(Node *parent, const QString &name, const QString &text) :
|
|
NodeIO(parent, nullptr, name, false, false)
|
|
{
|
|
AddField(new LabelField(this, text));
|
|
}
|