/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-11-27 * Changed: 2022-05-05 * * */ #ifndef LS_STD_EVENT_HANDLER_HPP #define LS_STD_EVENT_HANDLER_HPP #include #include #include #include #include "Event.hpp" #include namespace ls { class EventHandler : public ls::Narrator { public: explicit EventHandler(const ls::event_id& _id); ~EventHandler() override = default; ls::event_id getId(); private: ls::event_id id{}; void _assignId(const ls::event_id& _id); }; } #endif