]> git.sur5r.net Git - openldap/blob - contrib/ldapc++/src/LDAPExtResult.h
1f7aeb63a0fda562aa8d93aa577e018afc0a3192
[openldap] / contrib / ldapc++ / src / LDAPExtResult.h
1 /*
2  * Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  */
5
6 #ifndef LDAP_EXT_RESULT_H
7 #define LDAP_EXT_RESULT_H
8
9 #include <ldap.h>
10
11 class LDAPResult;
12 class LDAPRequest;
13
14 class LDAPExtResult : public LDAPResult {
15     public :
16         LDAPExtResult(const LDAPRequest* req, LDAPMessage* msg);
17         virtual ~LDAPExtResult();
18
19         const string& getResponseOid() const;
20         const string& getResponse() const;
21
22     private:
23         string m_oid;
24         string m_data;
25 };
26
27 #endif // LDAP_EXT_RESULT_H