2000-09-01 14:46:32 -04:00
|
|
|
/*
|
|
|
|
|
* 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:
|
2000-10-03 14:25:34 -04:00
|
|
|
LDAPSearchResult(const LDAPRequest *req, LDAPMessage *msg);
|
|
|
|
|
LDAPSearchResult(const LDAPSearchResult& res);
|
2000-09-01 14:46:32 -04:00
|
|
|
virtual ~LDAPSearchResult();
|
2000-10-03 14:25:34 -04:00
|
|
|
const LDAPEntry* getEntry() const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
LDAPEntry *entry;
|
2000-09-01 14:46:32 -04:00
|
|
|
};
|
|
|
|
|
#endif //LDAP_SEARCH_RESULT_H
|