mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-05 22:50:51 -05:00
Copyright notices have been adjusted per on-file OpenLDAP Contributor Assignment Agreement.
31 lines
644 B
C++
31 lines
644 B
C++
/*
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
// $Id: LDAPSearchReference.h,v 1.7 2000/08/31 17:43:49 rhafer Exp $
|
|
|
|
#ifndef LDAP_SEARCH_REFERENCE_H
|
|
#define LDAP_SEARCH_REFERENCE_H
|
|
|
|
#include "LDAPMessage.h"
|
|
#include "LDAPUrlList.h"
|
|
|
|
class LDAPRequest;
|
|
class LDAPUrl;
|
|
|
|
class LDAPSearchReference : public LDAPMsg{
|
|
|
|
private :
|
|
LDAPUrlList m_urlList;
|
|
LDAPSearchReference();
|
|
|
|
public :
|
|
LDAPSearchReference(LDAPRequest* req, LDAPMessage* msg);
|
|
~LDAPSearchReference();
|
|
LDAPUrlList* getURLs();
|
|
};
|
|
|
|
|
|
|
|
#endif //LDAP_SEARCH_REFERENCE_H
|