24 lines
317 B
C
24 lines
317 B
C
|
#ifndef WIDGET3_H
|
||
|
#define WIDGET3_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <QPushButton>
|
||
|
#include <QLineEdit>
|
||
|
#include <QDebug>
|
||
|
|
||
|
class Widget3 : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit Widget3(QWidget *parent = nullptr);
|
||
|
|
||
|
public:
|
||
|
QPushButton *btn;
|
||
|
QLineEdit *edit1,*edit2;
|
||
|
|
||
|
signals:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // WIDGET3_H
|