mirror of
https://github.com/Snigdha-OS/snigdhaos-horizon.git
synced 2025-09-07 15:25:11 +02:00
11 lines
195 B
C++
11 lines
195 B
C++
#include "event_router.h"
|
|
|
|
EventRouter *EventRouter::instance = nullptr;
|
|
|
|
EventRouter* EventRouter::ins() {
|
|
if (! instance) {
|
|
instance = new EventRouter;
|
|
}
|
|
return instance;
|
|
}
|