| 12345678910111213141516171819202122232425 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #include <core/StatusCode.hpp>
- using ls::atlantis::core::StatusCode;
- using ::std::move;
- using ::std::string;
- StatusCode::StatusCode(const uint16_t &_statusId, string _statusText) : statusId(_statusId), statusText(::move(_statusText))
- {}
- StatusCode::~StatusCode() = default;
- uint16_t StatusCode::getId() const
- {
- return this->statusId;
- }
- string StatusCode::getText() const
- {
- return this->statusText;
- }
|