| 1234567891011121314151617 |
- #pragma once
- #include <string>
- class ILDAPReader
- {
- public:
- virtual ~ILDAPReader() {};
- };
- class IMySQLLDAPAuthModule
- {
- public:
- virtual ~IMySQLLDAPAuthModule() {};
- virtual bool Authenticate(const std::string& username, const std::string& password) =0;
- };
|