mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
18 lines
478 B
C++
18 lines
478 B
C++
|
|
#ifndef XRAYINSTALLER_H
|
||
|
|
#define XRAYINSTALLER_H
|
||
|
|
|
||
|
|
#include "installerBase.h"
|
||
|
|
|
||
|
|
class XrayInstaller : public InstallerBase
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
explicit XrayInstaller(QObject *parent = nullptr);
|
||
|
|
|
||
|
|
amnezia::ErrorCode extractConfigFromContainer(amnezia::DockerContainer container, const amnezia::ServerCredentials &credentials,
|
||
|
|
SshSession* serverController, amnezia::ContainerConfig &config) override;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // XRAYINSTALLER_H
|
||
|
|
|