eventbus
eventbus copied to clipboard
A simple, header only event bus library written in modern C++17.
We need to add proper documentation to the code. This can also include integrating Doxygen and auto publishing documentation to Github pages. Sample workflow: ```yaml name: Documentation on: push: tags:...
There has been a request to be able to register "global" event handlers. These would be called when _any_ event is fired.
After a discussion on my discord with a user, it came up that there may be some easy performance gains by using `std::variant` instead of `std::any` with `std::any_cast`. I'd like...