10 lines
149 B
C++
10 lines
149 B
C++
|
#include "baseinput.h"
|
||
|
|
||
|
#include <QLabel>
|
||
|
|
||
|
BaseInput::BaseInput(QWidget* form, QString label):
|
||
|
QObject(form)
|
||
|
{
|
||
|
_label = new QLabel(label);
|
||
|
}
|