29 lines
362 B
C++
29 lines
362 B
C++
#ifndef MSGBOX_H
|
|
#define MSGBOX_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class msgBox;
|
|
}
|
|
|
|
class msgBox : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit msgBox(QWidget *parent = nullptr);
|
|
~msgBox();
|
|
public slots:
|
|
void getzhuangtai(QString str);
|
|
private slots:
|
|
void on_pushButton_clicked();
|
|
|
|
private:
|
|
Ui::msgBox *ui;
|
|
|
|
|
|
};
|
|
|
|
#endif // MSGBOX_H
|