ldapsdk  0.0.1
LDAPSaslBindResult.h
Go to the documentation of this file.
1 // $OpenLDAP$
2 /*
3  * Copyright 2007-2011 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 
7 #ifndef LDAP_SASL_BIND_RESULT_H
8 #define LDAP_SASL_BIND_RESULT_H
9 
10 #include <ldap.h>
11 
12 #include <LDAPResult.h>
13 
14 class LDAPRequest;
15 
21  public :
26  LDAPSaslBindResult(const LDAPRequest* req, LDAPMessage* msg);
27 
31  virtual ~LDAPSaslBindResult();
32 
37  const std::string& getServerCreds() const;
38 
39  private:
40  std::string m_creds;
41 };
42 
43 #endif // LDAP_SASL_BIND_RESULT_H