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