| 123456789101112131415161718192021222324252627 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #ifndef LS_ATLANTIS_ENGINE_FACTORY_WINDOW_API_EVENT_MANAGER_FACTORY_HPP
- #define LS_ATLANTIS_ENGINE_FACTORY_WINDOW_API_EVENT_MANAGER_FACTORY_HPP
- #include <Export.hpp>
- #include <glossary/WindowApiTypes.hpp>
- #include <interface/IWindowApiEventManager.hpp>
- #include <memory>
- namespace ls::atlantis::factory
- {
- class LS_ATLANTIS_DYNAMIC_GOAL WindowApiEventManagerFactory
- {
- public:
- WindowApiEventManagerFactory();
- ~WindowApiEventManagerFactory();
- [[nodiscard]] static ::std::shared_ptr<ls::atlantis::interfaces::IWindowApiEventManager> build(const ls::atlantis::glossary::WindowApiTypes &_windowApi);
- };
- }
- #endif
|