/* * author: Patrick-Christopher Mattulat * e-mail: webmaster@lynarstudios.com */ #include 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; }