27 lines
350 B
C
27 lines
350 B
C
|
#ifndef APPINIT_H
|
||
|
#define APPINIT_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class AppInit : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
static AppInit *Instance();
|
||
|
explicit AppInit(QObject *parent = 0);
|
||
|
|
||
|
void start();
|
||
|
|
||
|
protected:
|
||
|
bool eventFilter(QObject *obj, QEvent *evt);
|
||
|
|
||
|
private:
|
||
|
static AppInit self;
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
};
|
||
|
|
||
|
#endif // APPINIT_H
|