emsApplication/applications/EmsShower/appinit.h

27 lines
350 B
C
Raw Normal View History

2025-03-04 17:19:03 +08:00
#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