mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 23:59:34 -05:00
Copyright notices have been adjusted per on-file OpenLDAP Contributor Assignment Agreement.
24 lines
539 B
C++
24 lines
539 B
C++
/*
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
// $Id: LDAPSearchResult.h,v 1.4 2000/08/31 17:43:49 rhafer Exp $
|
|
|
|
#ifndef LDAP_SEARCH_RESULT_H
|
|
#define LDAP_SEARCH_RESULT_H
|
|
|
|
#include "LDAPMessage.h"
|
|
#include "LDAPEntry.h"
|
|
|
|
class LDAPRequest;
|
|
|
|
class LDAPSearchResult : public LDAPMsg{
|
|
private:
|
|
LDAPEntry *entry;
|
|
public:
|
|
LDAPSearchResult(LDAPRequest *req, LDAPMessage *msg);
|
|
virtual ~LDAPSearchResult();
|
|
LDAPEntry* getEntry();
|
|
};
|
|
#endif //LDAP_SEARCH_RESULT_H
|