20 lines
494 B
C++
20 lines
494 B
C++
#ifndef CLOAK_CONFIGURATOR_H
|
|
#define CLOAK_CONFIGURATOR_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "configurator_base.h"
|
|
|
|
using namespace amnezia;
|
|
|
|
class CloakConfigurator : ConfiguratorBase
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CloakConfigurator(std::shared_ptr<Settings> settings, QObject *parent = nullptr);
|
|
|
|
QString genCloakConfig(const ServerCredentials &credentials, DockerContainer container,
|
|
const QJsonObject &containerConfig, ErrorCode *errorCode = nullptr);
|
|
};
|
|
|
|
#endif // CLOAK_CONFIGURATOR_H
|