/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-11-14 * Changed: 2022-07-03 * * */ #ifndef LS_STD_NARRATOR_HPP #define LS_STD_NARRATOR_HPP #include #include #include #include #include namespace ls::std::event { class LS_STD_DYNAMIC_GOAL Narrator : public ls::std::core::Class { public: Narrator(); ~Narrator() override = default; bool addListener(const ::std::shared_ptr &_listener); void clear(); ::std::list<::std::shared_ptr> getListeners(); bool removeListener(const ::std::shared_ptr &_listener); void tell(const ls::std::core::Class &_info); private: ::std::list<::std::shared_ptr> listeners{}; }; } #endif