]> git.sur5r.net Git - openldap/blob - contrib/ldapc++/src/LDAPSearchReference.h
- removed char* in favour of string
[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
7 #ifndef LDAP_SEARCH_REFERENCE_H
8 #define LDAP_SEARCH_REFERENCE_H 
9
10 #include "LDAPMessage.h"
11 #include "LDAPUrlList.h"
12
13 class LDAPRequest;
14 class LDAPUrl;
15
16 class LDAPSearchReference : public LDAPMsg{
17
18     public :
19         LDAPSearchReference(const LDAPRequest* req, LDAPMessage* msg);
20         ~LDAPSearchReference();
21         const LDAPUrlList& getUrls() const;
22
23     private :
24         LDAPUrlList m_urlList;
25         LDAPSearchReference();
26 };
27
28
29
30 #endif //LDAP_SEARCH_REFERENCE_H