paysages3d/gui_qt/baseinput.cpp

15 lines
209 B
C++
Raw Normal View History

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