StatusCodeWindowCreationFailed.hpp 556 B

1234567891011121314151617181920212223
  1. /*
  2. * author: Patrick-Christopher Mattulat
  3. * e-mail: webmaster@lynarstudios.com
  4. */
  5. #ifndef LS_ATLANTIS_ENGINE_CYCLE_STATUS_CODE_WINDOW_CREATION_FAILED_HPP
  6. #define LS_ATLANTIS_ENGINE_CYCLE_STATUS_CODE_WINDOW_CREATION_FAILED_HPP
  7. #include <Export.hpp>
  8. #include <interface/AStatusCode.hpp>
  9. namespace ls::atlantis::cycle
  10. {
  11. class LS_ATLANTIS_DYNAMIC_GOAL StatusCodeWindowCreationFailed : public ls::atlantis::interfaces::AStatusCode
  12. {
  13. public:
  14. StatusCodeWindowCreationFailed();
  15. ~StatusCodeWindowCreationFailed() override;
  16. };
  17. }
  18. #endif