Event.cpp 539 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2024-05-16
  6. * Changed: 2024-05-16
  7. *
  8. * */
  9. #include <ls-std/event/reworked/Event.hpp>
  10. using ls::std::core::Class;
  11. using ls::std::event::reworked::Event;
  12. using ::std::shared_ptr;
  13. using ::std::string;
  14. Event::Event(const string &_name) : Class(_name)
  15. {}
  16. Event::~Event() noexcept = default;
  17. Event Event::of(const shared_ptr<Class> &_manager)
  18. {
  19. // implement
  20. return Event("tmp");
  21. }