123456789101112131415161718192021222324252627 |
- #ifndef LS_STD_SERIOUS_NEWS_EVENT_HPP
- #define LS_STD_SERIOUS_NEWS_EVENT_HPP
- #include <ls_std/ls_std_event.hpp>
- #include <string>
- namespace ls_std_event_test
- {
- class SeriousNewsEvent : public ls::std::event::Event
- {
- public:
- explicit SeriousNewsEvent(const ::std::string &_news);
- ~SeriousNewsEvent() override = default;
- };
- }
- #endif
|