IWindowApi.hpp 568 B

123456789101112131415161718192021222324252627
  1. /*
  2. * author: Patrick-Christopher Mattulat
  3. * e-mail: webmaster@lynarstudios.com
  4. */
  5. #ifndef LS_ATLANTIS_ENGINE_INTERFACE_WINDOW_API_HPP
  6. #define LS_ATLANTIS_ENGINE_INTERFACE_WINDOW_API_HPP
  7. #include <Export.hpp>
  8. #include <glossary/WindowApiTypes.hpp>
  9. #include <interface/AStatusCode.hpp>
  10. namespace ls::atlantis::interfaces
  11. {
  12. class LS_ATLANTIS_DYNAMIC_GOAL IWindowApi
  13. {
  14. public:
  15. IWindowApi();
  16. virtual ~IWindowApi();
  17. virtual ls::atlantis::glossary::WindowApiTypes getWindowApiType() = 0;
  18. virtual AStatusCode init() = 0;
  19. };
  20. }
  21. #endif