GossipNewsEvent.hpp 549 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-11-27
  6. * Changed: 2023-02-23
  7. *
  8. * */
  9. #ifndef LS_STD_GOSSIP_NEWS_EVENT_HPP
  10. #define LS_STD_GOSSIP_NEWS_EVENT_HPP
  11. #include <ls-std/ls-std-event.hpp>
  12. #include <string>
  13. namespace test::event
  14. {
  15. class GossipNewsEvent : public ls::std::event::Event
  16. {
  17. public:
  18. explicit GossipNewsEvent(const ::std::string &_news);
  19. ~GossipNewsEvent() noexcept override;
  20. };
  21. }
  22. #endif