Files

18 lines
294 B
C++
Raw Permalink Normal View History

2023-10-06 17:19:44 +05:00
#ifndef AWGPROTOCOL_H
#define AWGPROTOCOL_H
#include <QObject>
#include "wireguardprotocol.h"
2023-10-06 17:19:44 +05:00
class Awg : public WireguardProtocol
{
Q_OBJECT
public:
2023-10-06 17:19:44 +05:00
explicit Awg(const QJsonObject &configuration, QObject *parent = nullptr);
virtual ~Awg() override;
};
2023-10-06 17:19:44 +05:00
#endif // AWGPROTOCOL_H