GossipNewsEvent.hpp 534 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: 2021-04-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.hpp>
  12. #include <string>
  13. namespace ls_std_test
  14. {
  15. class GossipNewsEvent : public ls_std::Event
  16. {
  17. public:
  18. explicit GossipNewsEvent(const std::string &_news);
  19. ~GossipNewsEvent() override = default;
  20. };
  21. }
  22. #endif