aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared/lsp/jsonobject.cpp
blob: 887d79a5e03812fef2babdd6c332433e9200a56e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 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 <QCoreApplication>

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