errorpopupdlg.h
409 Bytes
#ifndef ERRORPOPUPDLG_H
#define ERRORPOPUPDLG_H
#include <QDialog>
namespace Ui {
class errorPopupDlg;
}
class errorPopupDlg : public QDialog
{
Q_OBJECT
public:
explicit errorPopupDlg(QWidget *parent = 0, const QString &MsgDesc=0, const QString &MsgTitle=0);
~errorPopupDlg();
private slots:
void on_ctrlOkBtn_clicked();
private:
Ui::errorPopupDlg *ui;
};
#endif // ERRORPOPUPDLG_H