123456789101112131415161718192021222324252627 |
- #ifndef LS_STD_I_EVENT_SUBSCRIBER_HPP
- #define LS_STD_I_EVENT_SUBSCRIBER_HPP
- #include "EventTypes.hpp"
- namespace ls_std {
- class IEventSubscriber {
- public:
- IEventSubscriber() = default;
- ~IEventSubscriber() = default;
- virtual void subscribe(const ls_std::event_id& _id) = 0;
- virtual void unsubscribe(const ls_std::event_id& _id) = 0;
- };
- }
- #endif
|