24 lines
453 B
C++
24 lines
453 B
C++
#ifndef X_UIMSGBOXOKCANCEL_H
|
|
#define X_UIMSGBOXOKCANCEL_H
|
|
|
|
#include <LoQClass/loqdialog.h>
|
|
|
|
namespace Ui {
|
|
class X_UIMsgBoxOkCancel;
|
|
}
|
|
|
|
class X_UIMsgBoxOkCancel : public LoQDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit X_UIMsgBoxOkCancel(QWidget *parent = nullptr);
|
|
X_UIMsgBoxOkCancel(QString strTitle,QString text, QWidget *parent = nullptr);
|
|
~X_UIMsgBoxOkCancel();
|
|
|
|
private:
|
|
Ui::X_UIMsgBoxOkCancel *ui;
|
|
};
|
|
|
|
#endif // X_UIMSGBOXOKCANCEL_H
|