// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved. // For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md #include "QuerySMSGetByText.hpp" namespace db::query { SMSGetByText::SMSGetByText(std::string text) : Query(Query::Type::Read), text(std::move(text)) {} auto SMSGetByText::debugInfo() const -> std::string { return "SMSGetByText"; } SMSGetByTextResult::SMSGetByTextResult(std::vector result) : result(std::move(result)) {} auto SMSGetByTextResult::getResults() const -> std::vector { return result; } auto SMSGetByTextResult::debugInfo() const -> std::string { return "SMSGetByTextResult"; } } // namespace db::query