DailyNewsAgency.hpp 795 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: 2021-05-02
  7. *
  8. * */
  9. #ifndef LS_STD_DAILY_NEWS_AGENCY_HPP
  10. #define LS_STD_DAILY_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. {
  18. class DailyNewsAgency : public ls_std_test::NewsAgency, public ls_std::IListener
  19. {
  20. public:
  21. DailyNewsAgency();
  22. ~DailyNewsAgency() = default;
  23. // implementation
  24. void listen(const ls_std::Class &_info) override;
  25. // additional functionality
  26. void clear();
  27. std::string getNews();
  28. private:
  29. std::string news{};
  30. };
  31. }
  32. #endif