123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2024-05-16
- * Changed: 2024-05-31
- *
- * */
- #ifndef LS_STD_EVENT_LISTENER_HPP
- #define LS_STD_EVENT_LISTENER_HPP
- #include "Event.hpp"
- #include "EventParameter.hpp"
- #include <ls-std/core/definition.hpp>
- #include <ls-std/core/Class.hpp>
- #include <ls-std/event/type/EventTypes.hpp>
- namespace ls::std::event
- {
- ls_std_class EventListener : public ::std::enable_shared_from_this<EventListener>, public core::Class
- {
- public:
- explicit EventListener();
- ~EventListener() noexcept override;
- [[nodiscard]] type::listener_id getId() const;
- void setId(type::listener_id _id);
- void setParameter(const EventParameter &_parameter);
- [[maybe_unused]] bool subscribe(const Event &_event, const type::event_action &_action);
- [[maybe_unused]] bool unsubscribe(const Event &_event);
- protected:
- EventParameter parameter{};
- private:
- type::listener_id id{};
- void _requestListenerId(const ::std::shared_ptr<Class> &_manager);
- [[nodiscard]] bool _subscribe(const Event &_event, const type::event_action &_action);
- [[nodiscard]] bool _unsubscribe(const Event &_event);
- };
- }
- #endif
|