IListener.hpp 564 B

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