mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-21 23:29:34 -05:00
28 lines
564 B
C
28 lines
564 B
C
|
|
/*
|
||
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
||
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef LDAP_EXT_RESULT_H
|
||
|
|
#define LDAP_EXT_RESULT_H
|
||
|
|
|
||
|
|
#include <ldap.h>
|
||
|
|
|
||
|
|
class LDAPResult;
|
||
|
|
class LDAPRequest;
|
||
|
|
|
||
|
|
class LDAPExtResult : public LDAPResult {
|
||
|
|
public :
|
||
|
|
LDAPExtResult(const LDAPRequest* req, LDAPMessage* msg);
|
||
|
|
virtual ~LDAPExtResult();
|
||
|
|
|
||
|
|
const string& getResponseOid() const;
|
||
|
|
const string& getResponse() const;
|
||
|
|
|
||
|
|
private:
|
||
|
|
string m_oid;
|
||
|
|
string m_data;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // LDAP_EXT_RESULT_H
|