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.
24 lines
364 B
24 lines
364 B
#ifndef APPINIT_H
|
|
#define APPINIT_H
|
|
|
|
#include <QObject>
|
|
|
|
class AppInit : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
static AppInit *Instance();
|
|
explicit AppInit(QObject *parent = 0);
|
|
|
|
protected:
|
|
bool eventFilter(QObject *watched, QEvent *event);
|
|
|
|
private:
|
|
static QScopedPointer<AppInit> self;
|
|
|
|
public slots:
|
|
void start();
|
|
};
|
|
|
|
#endif // APPINIT_H
|