paysages3d/gui_qt/baseinput.cpp

10 lines
149 B
C++
Raw Normal View History

#include "baseinput.h"
#include <QLabel>
BaseInput::BaseInput(QWidget* form, QString label):
QObject(form)
{
_label = new QLabel(label);
}