1234567891011121314151617181920212223242526 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2024-05-16
- * Changed: 2024-05-16
- *
- * */
- #include <ls-std/event/reworked/Event.hpp>
- using ls::std::core::Class;
- using ls::std::event::reworked::Event;
- using ::std::shared_ptr;
- using ::std::string;
- Event::Event(const string &_name) : Class(_name)
- {}
- Event::~Event() noexcept = default;
- Event Event::of(const shared_ptr<Class> &_manager)
- {
- // implement
- return Event("tmp");
- }
|