IListener.hpp 635 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-11-14
  6. * Changed: 2022-05-19
  7. *
  8. * */
  9. #ifndef LS_STD_I_LISTENER_HPP
  10. #define LS_STD_I_LISTENER_HPP
  11. #include <ls_std/core/Class.hpp>
  12. namespace ls
  13. {
  14. namespace std
  15. {
  16. namespace core
  17. {
  18. namespace interface_type
  19. {
  20. class IListener
  21. {
  22. public:
  23. IListener() = default;
  24. ~IListener() = default;
  25. virtual void listen(const ls::std::core::Class &_info) = 0;
  26. };
  27. }
  28. }
  29. }
  30. }
  31. #endif