paysages3d/gui_qt/baseinput.cpp
2012-01-05 19:41:10 +00:00

15 lines
209 B
C++

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