openldap/contrib/ldapc++/src/LDAPReferral.h
Kurt Zeilenga 84d0e26234 Initial check of the LDAP C++ SDK written by Ralf Haferkamp <rhafer@suse.de>
Copyright notices have been adjusted per on-file OpenLDAP Contributor
Assignment Agreement.
2000-09-01 18:46:32 +00:00

29 lines
495 B
C++

/*
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
// $Id: LDAPReferral.h,v 1.8 2000/08/31 17:43:49 rhafer Exp $
#ifndef LDAP_REFERRAL_H
#define LDAP_REFERRAL_H
#include <list>
#include "LDAPMessage.h"
class LDAPRequest;
class LDAPUrl;
class LDAPReferral {
private :
LDAPUrlList m_urlList;
public :
LDAPReferral();
~LDAPReferral();
LDAPUrl* getURL();
};
#endif //LDAP_REFERRAL_H