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