SeriousNewsEvent.hpp 537 B

12345678910111213141516171819202122232425
  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-27
  7. *
  8. * */
  9. #ifndef LS_STD_SERIOUS_NEWS_EVENT_HPP
  10. #define LS_STD_SERIOUS_NEWS_EVENT_HPP
  11. #include <ls_std/ls_std.hpp>
  12. #include <string>
  13. namespace ls_std_test {
  14. class SeriousNewsEvent : public ls_std::Event {
  15. public:
  16. explicit SeriousNewsEvent(const std::string& _news);
  17. ~SeriousNewsEvent() override = default;
  18. };
  19. }
  20. #endif