00001 /* 00002 * Copyright 2000, OpenLDAP Foundation, All Rights Reserved. 00003 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file 00004 */ 00005 00006 00007 #ifndef LDAP_SEARCH_REFERENCE_H 00008 #define LDAP_SEARCH_REFERENCE_H 00009 00010 #include <LDAPMessage.h> 00011 #include <LDAPUrlList.h> 00012 00013 class LDAPRequest; 00014 class LDAPUrl; 00015 00020 class LDAPSearchReference : public LDAPMsg{ 00021 00022 public : 00026 LDAPSearchReference(const LDAPRequest* req, LDAPMessage* msg); 00027 00031 ~LDAPSearchReference(); 00032 00036 const LDAPUrlList& getUrls() const; 00037 00038 private : 00039 LDAPUrlList m_urlList; 00040 LDAPSearchReference(); 00041 }; 00042 00043 00044 00045 #endif //LDAP_SEARCH_REFERENCE_H