| 123456789101112131415161718192021222324252627 |
- /*
- * 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>
- namespace ls::atlantis::interfaces
- {
- class LS_ATLANTIS_DYNAMIC_GOAL IWindowApi
- {
- public:
- IWindowApi();
- virtual ~IWindowApi();
- virtual ls::atlantis::glossary::WindowApiTypes getWindowApiType() = 0;
- virtual AStatusCode init() = 0;
- };
- }
- #endif
|