qfedu-qt-level/homework-day1/widget2.h

23 lines
286 B
C
Raw Normal View History

2023-08-08 17:47:59 +08:00
#ifndef WIDGET2_H
#define WIDGET2_H
#include <QWidget>
#include <QLabel>
#include <QPushButton>
class Widget2 : public QWidget
{
Q_OBJECT
public:
explicit Widget2(QWidget *parent = nullptr);
public:
QPushButton *btn;
QLabel *label;
signals:
};
#endif // WIDGET2_H