This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-08-09 14:19:40 +02:00

28 lines
494 B
C++

#ifndef AWSAUTHENTICATOR_H
#define AWSAUTHENTICATOR_H
#include <QObject>
#include "authenticator.h"
#include "authenticationreply.h"
namespace remoteproxy {
class AwsAuthenticator : public Authenticator
{
Q_OBJECT
public:
explicit AwsAuthenticator(QObject *parent = nullptr);
~AwsAuthenticator() override = default;
QString name() const override;
public slots:
AuthenticationReply *authenticate(ProxyClient *proxyClient) override;
};
}
#endif // AWSAUTHENTICATOR_H