/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-11-27 * Changed: 2023-02-23 * * */ #ifndef LS_STD_SERIOUS_NEWS_EVENT_HPP #define LS_STD_SERIOUS_NEWS_EVENT_HPP #include #include namespace test::event { class SeriousNewsEvent : public ls::std::event::Event { public: explicit SeriousNewsEvent(const ::std::string &_news); ~SeriousNewsEvent() noexcept override; }; } #endif