IWindowApi.hpp 489 B

1234567891011121314151617181920212223242526
  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 <interface/AStatusCode.hpp>
  9. #include <memory>
  10. namespace ls::atlantis::interfaces
  11. {
  12. class LS_ATLANTIS_DYNAMIC_GOAL IWindowApi
  13. {
  14. public:
  15. IWindowApi();
  16. virtual ~IWindowApi();
  17. virtual ::std::shared_ptr<AStatusCode> init() = 0;
  18. };
  19. }
  20. #endif