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.
zamek-hswro/IAuthenticator.h

15 lines
196 B
C++

#ifndef IAUTHENTICATOR_H
#define IAUTHENTICATOR_H
#include "Key.h"
class IAuthenticator
{
public:
virtual ~IAuthenticator() {};
virtual Key getKey() = 0;
};
#endif // IAUTHENTICATOR_H