mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-23 02:00:20 +07:00
18 lines
396 B
C++
18 lines
396 B
C++
|
|
#ifndef AMNEZIAWIREGUARDPROTOCOL_H
|
||
|
|
#define AMNEZIAWIREGUARDPROTOCOL_H
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
|
||
|
|
#include "wireguardprotocol.h"
|
||
|
|
|
||
|
|
class AmneziaWireGuardProtocol : public WireguardProtocol
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit AmneziaWireGuardProtocol(const QJsonObject &configuration, QObject *parent = nullptr);
|
||
|
|
virtual ~AmneziaWireGuardProtocol() override;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // AMNEZIAWIREGUARDPROTOCOL_H
|