// Copyright (C) 2018 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "jsonobject.h" #include namespace lsp { JsonObject &JsonObject::operator=(const JsonObject &other) = default; JsonObject &JsonObject::operator=(JsonObject &&other) { m_jsonObject.swap(other.m_jsonObject); return *this; } QJsonObject::iterator JsonObject::insert(const std::string_view key, const JsonObject &object) { return m_jsonObject.insert(QLatin1String(key.data()), object.m_jsonObject); } QJsonObject::iterator JsonObject::insert(const std::string_view key, const QJsonValue &value) { return m_jsonObject.insert(QLatin1String(key.data()), value); } } // namespace lsp