mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-21 02:01:03 +07:00
19 lines
282 B
C++
19 lines
282 B
C++
|
|
#include "dnsProtocolConfig.h"
|
||
|
|
|
||
|
|
namespace amnezia
|
||
|
|
{
|
||
|
|
|
||
|
|
QJsonObject DnsProtocolConfig::toJson() const
|
||
|
|
{
|
||
|
|
return QJsonObject();
|
||
|
|
}
|
||
|
|
|
||
|
|
DnsProtocolConfig DnsProtocolConfig::fromJson(const QJsonObject& json)
|
||
|
|
{
|
||
|
|
Q_UNUSED(json);
|
||
|
|
return DnsProtocolConfig();
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace amnezia
|
||
|
|
|