This repository has been archived on 2024-11-17. You can view files and clone it, but cannot push or open issues or pull requests.
|
#ifndef IAUTHENTICATOR_H
|
|
#define IAUTHENTICATOR_H
|
|
|
|
#include "Key.h"
|
|
|
|
class IAuthenticator
|
|
{
|
|
public:
|
|
virtual ~IAuthenticator() {};
|
|
|
|
virtual Key getKey() = 0;
|
|
};
|
|
|
|
#endif // IAUTHENTICATOR_H
|