You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
473 B
26 lines
473 B
#ifndef ONETIMEDIALOG_H |
|
#define ONETIMEDIALOG_H |
|
|
|
#include <QDialog> |
|
|
|
namespace Ui { |
|
class OneTimeDialog; |
|
} |
|
|
|
class OneTimeDialog : public QDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit OneTimeDialog(QWidget *parent = 0,const char *propName = (const char *)0,const QString &title = QString(),const QString &message = QString()); |
|
~OneTimeDialog(); |
|
|
|
private slots: |
|
void on_pushButton_clicked(); |
|
|
|
private: |
|
Ui::OneTimeDialog *ui; |
|
const char *_propName; |
|
}; |
|
|
|
#endif // ONETIMEDIALOG_H
|
|
|