mirror of
https://github.com/Mahdi-zarei/nekoray.git
synced 2025-12-19 05:30:06 +08:00
15 lines
361 B
C++
15 lines
361 B
C++
#pragma once
|
|
#include <QJsonObject>
|
|
#include <QUrlQuery>
|
|
|
|
namespace Configs
|
|
{
|
|
void mergeUrlQuery(QUrlQuery& baseQuery, const QString& strQuery);
|
|
|
|
void mergeJsonObjects(QJsonObject& baseObject, const QJsonObject& obj);
|
|
|
|
QStringList jsonObjectToQStringList(const QJsonObject& obj);
|
|
|
|
QJsonObject qStringListToJsonObject(const QStringList& list);
|
|
}
|