IListener.hpp 502 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-11-14
  6. * Changed: 2021-04-23
  7. *
  8. * */
  9. #ifndef LS_STD_I_LISTENER_HPP
  10. #define LS_STD_I_LISTENER_HPP
  11. #include <ls_std/base/Class.hpp>
  12. namespace ls_std
  13. {
  14. class IListener : public Class
  15. {
  16. public:
  17. IListener();
  18. ~IListener() override = default;
  19. virtual void listen(const ls_std::Class &_info) = 0;
  20. };
  21. }
  22. #endif