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