| 12345678910111213141516171819202122232425262728293031 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #ifndef LS_ATLANTIS_ENGINE_INTERFACE_STATUS_CODE_HPP
- #define LS_ATLANTIS_ENGINE_INTERFACE_STATUS_CODE_HPP
- #include <Export.hpp>
- #include <string>
- namespace ls::atlantis::interfaces
- {
- class LS_ATLANTIS_DYNAMIC_GOAL AStatusCode
- {
- public:
- explicit AStatusCode(const uint16_t &_statusId, ::std::string _statusText);
- virtual ~AStatusCode();
- [[nodiscard]] virtual uint16_t getId() const;
- [[nodiscard]] virtual ::std::string getText() const;
- private:
- uint16_t statusId{};
- ::std::string statusText{};
- };
- }
- #endif
|