Michaël Lemaire
1fcbb37f17
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@214 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
9 lines
149 B
C++
9 lines
149 B
C++
#include "baseinput.h"
|
|
|
|
#include <QLabel>
|
|
|
|
BaseInput::BaseInput(QWidget* form, QString label):
|
|
QObject(form)
|
|
{
|
|
_label = new QLabel(label);
|
|
}
|