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