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