Michaël Lemaire
08344579e5
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@215 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
14 lines
209 B
C++
14 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());
|
|
}
|