| 123456789101112131415 |
- #pragma once
- #include <memory>
- #include "interfaces.h"
- class MySQLLDAPAuthModule: public IMySQLLDAPAuthModule
- {
- public:
- MySQLLDAPAuthModule(std::unique_ptr<ILDAPReader>&& ldapReader);
- bool Authenticate(const std::string& username, const std::string& password) override;
- private:
- std::unique_ptr<ILDAPReader> ldapReader;
- };
|