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