add event system and use it to propagate to print traces

This commit is contained in:
2026-06-05 17:18:17 +02:00
parent abc261c03a
commit 9677133c54
14 changed files with 369 additions and 10 deletions

View File

@@ -0,0 +1,7 @@
#include "EventHandlerBase.h"
unsigned int EventHandlerBase::s_nextId = 0;
EventHandlerBase::EventHandlerBase(): m_id(s_nextId++)
{
}