13 lines
215 B
C++
13 lines
215 B
C++
#ifndef LABELWIDGET_H
|
|
#define LABELWIDGET_H
|
|
|
|
#include "nodes/nodeio.h"
|
|
|
|
class LabelWidget : public NodeIO
|
|
{
|
|
public:
|
|
LabelWidget(Node* parent, const QString& name, const QString& text);
|
|
};
|
|
|
|
#endif // LABELWIDGET_H
|