openldap/contrib/ldapc++/src/LDAPSearchResult.h
Ralf Haferkamp 11fbe2a45c - removed char* in favour of string
- extented Referral chasing (loop detection, hop limit, Rebind)
- support for Server Controls
- fixed many bugs and memory leaks
2000-10-03 18:25:34 +00:00

25 lines
551 B
C++

/*
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#ifndef LDAP_SEARCH_RESULT_H
#define LDAP_SEARCH_RESULT_H
#include "LDAPMessage.h"
#include "LDAPEntry.h"
class LDAPRequest;
class LDAPSearchResult : public LDAPMsg{
public:
LDAPSearchResult(const LDAPRequest *req, LDAPMessage *msg);
LDAPSearchResult(const LDAPSearchResult& res);
virtual ~LDAPSearchResult();
const LDAPEntry* getEntry() const;
private:
LDAPEntry *entry;
};
#endif //LDAP_SEARCH_RESULT_H