mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-05-19 14:15:02 -04:00
26 lines
630 B
C++
26 lines
630 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include "QuerySMSUpdate.hpp"
|
|
|
|
using namespace std::literals::string_literals;
|
|
|
|
namespace db::query
|
|
{
|
|
SMSUpdate::SMSUpdate(const SMSRecord &_record) : Query(Query::Type::Update), record{_record}
|
|
{}
|
|
|
|
std::string SMSUpdate::debugInfo() const
|
|
{
|
|
return "SMSUpdate"s;
|
|
}
|
|
|
|
SMSUpdateResult::SMSUpdateResult(bool _result) : result{_result}
|
|
{}
|
|
|
|
std::string SMSUpdateResult::debugInfo() const
|
|
{
|
|
return "SMSUpdateResult"s;
|
|
}
|
|
} // namespace db::query
|