]> git.sur5r.net Git - openldap/blob - contrib/ldapc++/src/LDAPReferral.h
Initial check of the LDAP C++ SDK written by Ralf Haferkamp <rhafer@suse.de>
[openldap] / contrib / ldapc++ / src / LDAPReferral.h
1 /*
2  * Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  */
5
6 // $Id: LDAPReferral.h,v 1.8 2000/08/31 17:43:49 rhafer Exp $
7
8 #ifndef LDAP_REFERRAL_H
9 #define LDAP_REFERRAL_H
10
11 #include <list>
12 #include "LDAPMessage.h"
13
14 class LDAPRequest;
15 class LDAPUrl;
16
17
18 class LDAPReferral {
19
20     private :
21         LDAPUrlList m_urlList;
22
23     public :
24         LDAPReferral();
25         ~LDAPReferral();
26         LDAPUrl* getURL();
27 };
28
29 #endif //LDAP_REFERRAL_H