interfaces.h 289 B

1234567891011121314151617
  1. #pragma once
  2. #include <string>
  3. class ILDAPReader
  4. {
  5. public:
  6. virtual ~ILDAPReader() {};
  7. };
  8. class IMySQLLDAPAuthModule
  9. {
  10. public:
  11. virtual ~IMySQLLDAPAuthModule() {};
  12. virtual bool Authenticate(const std::string& username, const std::string& password) =0;
  13. };