| 215 | } |
| 216 | |
| 217 | EventsSubscriber::EventsSubscriber(std::set<EventType> types, String filter, const String& filterSource) |
| 218 | : m_Types(std::move(types)), m_Inbox(new EventsInbox(std::move(filter), filterSource)) |
| 219 | { |
| 220 | EventsRouter::GetInstance().Subscribe(m_Types, m_Inbox); |
| 221 | } |
| 222 | |
| 223 | EventsSubscriber::~EventsSubscriber() |
| 224 | { |