ls-std-event.hpp 635 B

12345678910111213141516171819202122232425
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2022-05-14
  6. * Changed: 2024-09-09
  7. *
  8. * */
  9. #ifndef LS_STD_LS_STD_EVENT_HPP
  10. #define LS_STD_LS_STD_EVENT_HPP
  11. /*
  12. * @doc: package(name: 'event')
  13. * @doc: event.description('This package provides an event manager and the functionality to through events.')
  14. * */
  15. #include <ls-std/event/type/EventTypes.hpp>
  16. #include <ls-std/event/Event.hpp>
  17. #include <ls-std/event/EventListener.hpp>
  18. #include <ls-std/event/EventManager.hpp>
  19. #include <ls-std/event/EventParameter.hpp>
  20. #endif