summaryrefslogtreecommitdiffstats
path: root/tests/auto/qapplication/modal/base.h
blob: ebf1198c38455f640a075f8ac3d56f6eef2a0c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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