#ifndef AWGCONFIGURATOR_H #define AWGCONFIGURATOR_H #include #include "wireguard_configurator.h" class AwgConfigurator : public WireguardConfigurator { Q_OBJECT public: AwgConfigurator(std::shared_ptr settings, QObject *parent = nullptr); QString genAwgConfig(const ServerCredentials &credentials, DockerContainer container, const QJsonObject &containerConfig, ErrorCode *errorCode = nullptr); }; #endif // AWGCONFIGURATOR_H