nodeguy/src/cpp/QtWidgets/QLabel/nlabel.hpp
2019-09-20 23:42:03 +02:00

15 lines
258 B
C++

#pragma once
#include <QLabel>
#include "src/cpp/core/NodeWidget/nodewidget.h"
class NLabel: public QLabel, public NodeWidget
{
Q_OBJECT
NODEWIDGET_IMPLEMENTATIONS(QLabel)
public:
using QLabel::QLabel; //inherit all constructors of QLabel
};