mirror of
https://github.com/Snigdha-OS/snigdhaos-horizon.git
synced 2025-09-20 20:24:57 +02:00
18 lines
320 B
C++
18 lines
320 B
C++
#ifndef EVENT_ROUTER_H
|
|
#define EVENT_ROUTER_H
|
|
#include <QObject>
|
|
|
|
class EventRouter : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
static EventRouter *ins();
|
|
signals:
|
|
void evtChAppTheme();
|
|
void evtUninstallInit();
|
|
void evtUninstallComp();
|
|
private:
|
|
static EventRouter *instance;
|
|
};
|
|
|
|
#endif // EVENT_ROUTER_H
|