mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +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
|