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