mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-06-09 00:55:19 -04:00
24 lines
591 B
C++
24 lines
591 B
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include "QueryCalllogSetAllRead.hpp"
|
|
|
|
namespace db::query::calllog
|
|
{
|
|
SetAllRead::SetAllRead() : Query(Query::Type::Update)
|
|
{}
|
|
|
|
auto SetAllRead::debugInfo() const -> std::string
|
|
{
|
|
return "SetAllRead";
|
|
}
|
|
|
|
SetAllReadResult::SetAllReadResult(bool ret) : ret(ret)
|
|
{}
|
|
|
|
[[nodiscard]] auto SetAllReadResult::debugInfo() const -> std::string
|
|
{
|
|
return "SetAllReadResult";
|
|
}
|
|
} // namespace db::query::calllog
|