GossipNewsAgency.hpp 986 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-11-27
  6. * Changed: 2020-11-29
  7. *
  8. * */
  9. #ifndef LS_STD_GOSSIP_NEWS_AGENCY_HPP
  10. #define LS_STD_GOSSIP_NEWS_AGENCY_HPP
  11. #include <string>
  12. #include <memory>
  13. #include <map>
  14. #include <ls_std/ls_std.hpp>
  15. #include "NewsAgency.hpp"
  16. namespace ls_std_test {
  17. class GossipNewsAgency : public ls_std_test::NewsAgency, public ls_std::IListener {
  18. public:
  19. GossipNewsAgency();
  20. ~GossipNewsAgency() override = default;
  21. // implementation
  22. void clear();
  23. std::string getNews();
  24. void listen(const ls_std::Class& _info) override;
  25. // additional functionality
  26. void addEventHandler(const std::shared_ptr<ls_std::EventHandler>& _eventHandler);
  27. private:
  28. std::map<ls_std::event_id, std::shared_ptr<ls_std::EventHandler>> eventHandlers {};
  29. std::string news {};
  30. };
  31. }
  32. #endif