| 12345678910111213141516171819202122232425262728 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #ifndef LS_ATLANTIS_ENGINE_INTERFACE_WINDOW_API_HPP
- #define LS_ATLANTIS_ENGINE_INTERFACE_WINDOW_API_HPP
- #include <Export.hpp>
- #include <glossary/WindowApiTypes.hpp>
- #include <interface/AStatusCode.hpp>
- #include <memory>
- namespace ls::atlantis::interfaces
- {
- class LS_ATLANTIS_DYNAMIC_GOAL IWindowApi
- {
- public:
- IWindowApi();
- virtual ~IWindowApi();
- virtual ls::atlantis::glossary::WindowApiTypes getWindowApiType() = 0;
- virtual ::std::shared_ptr<AStatusCode> init() = 0;
- };
- }
- #endif
|