mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-23 02:00:20 +07:00
13 lines
220 B
C++
13 lines
220 B
C++
|
|
#include "protocolConfig.h"
|
||
|
|
|
||
|
|
#include <QJsonObject>
|
||
|
|
|
||
|
|
ProtocolConfig::ProtocolConfig(const QString &protocolName) : protocolName(protocolName)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
QJsonObject ProtocolConfig::toJson() const
|
||
|
|
{
|
||
|
|
return QJsonObject();
|
||
|
|
}
|