28 lines
395 B
C
Raw Normal View History

#ifndef MESSAGEDLG_H
#define MESSAGEDLG_H
#include <QDialog>
namespace Ui {
class MessageDlg;
}
class MessageDlg : public QDialog
{
Q_OBJECT
public:
explicit MessageDlg(QWidget *parent = 0,bool NoButton = true,QString Message = "");
~MessageDlg();
private:
Ui::MessageDlg *ui;
bool isNoButton;
QString m_Message;
public:
bool Yes;
};
#endif // MESSAGEDLG_H