]> git.sur5r.net Git - openldap/blobdiff - contrib/ldapc++/src/LDAPSearchReference.h
Entry rwlock is no longer needed as concurrency is managed
[openldap] / contrib / ldapc++ / src / LDAPSearchReference.h
index e27fd65137b4ab9d80747be4fb2f121c25ce9318..2bdf927bb48ef4a2bf6bf4ca4342aae8cc705d20 100644 (file)
@@ -7,17 +7,32 @@
 #ifndef LDAP_SEARCH_REFERENCE_H
 #define LDAP_SEARCH_REFERENCE_H 
 
-#include "LDAPMessage.h"
-#include "LDAPUrlList.h"
+#include <LDAPMessage.h>
+#include <LDAPUrlList.h>
 
 class LDAPRequest;
 class LDAPUrl;
 
+/**
+ * This class is used to represent Continuation References that were
+ * returned during a SEARCH-Operation.
+ */
 class LDAPSearchReference : public LDAPMsg{
 
     public :
+        /**
+         * Constructor that create an object from the C-API structures
+         */
         LDAPSearchReference(const LDAPRequest* req, LDAPMessage* msg);
+
+        /**
+         * The Destructor
+         */
         ~LDAPSearchReference();
+
+        /**
+         * @returns The destination URLs that were send with this message
+         */
         const LDAPUrlList& getUrls() const;
 
     private :