diff options
Diffstat (limited to 'tests/auto/qapplication/modal/base.h')
-rw-r--r-- | tests/auto/qapplication/modal/base.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/auto/qapplication/modal/base.h b/tests/auto/qapplication/modal/base.h new file mode 100644 index 0000000..ebf1198 --- /dev/null +++ b/tests/auto/qapplication/modal/base.h @@ -0,0 +1,23 @@ +#ifndef BASE_H +#define BASE_H + +#include <QWidget> +#include <QTimer> +#include <QDialog> + +class base : public QWidget +{ +Q_OBJECT + QTimer *m_timer; + bool m_modalStarted; + QDialog *m_modalDialog; +public: + explicit base(QWidget *parent = 0); + +signals: + +public slots: + void periodicTimer(); +}; + +#endif // BASE_H |