]> git.sur5r.net Git - openldap/blobdiff - contrib/ldapc++/src/LDAPModList.h
Entry rwlock is no longer needed as concurrency is managed
[openldap] / contrib / ldapc++ / src / LDAPModList.h
index 6fc1d74afa4153c66558dcf3ca7738db697174c8..0edcd9e86e953052bc9d287842b49017431e2468 100644 (file)
@@ -9,9 +9,9 @@
 
 #include <ldap.h>
 #include <list>
-#include "LDAPModification.h"
+#include <LDAPModification.h>
 
-typedef list<LDAPModification> ModList;
+typedef std::list<LDAPModification> ModList;
 
 /**
  * This container class is used to store multiple LDAPModification-objects.
@@ -20,7 +20,7 @@ class LDAPModList{
 
        public : 
         /**
-         * Constructs an empty list.
+         * Constructs an empty std::list.
          */   
                LDAPModList();
                
@@ -30,13 +30,13 @@ class LDAPModList{
         LDAPModList(const LDAPModList&);
 
         /**
-         * Adds one element to the end of the list.
-         * @param mod The LDAPModification to add to the list.
+         * Adds one element to the end of the std::list.
+         * @param mod The LDAPModification to add to the std::list.
          */
                void addModification(const LDAPModification &mod);
 
         /**
-         * Translates the list to a 0-terminated array of
+         * Translates the std::list to a 0-terminated array of
          * LDAPMod-structures as needed by the C-API
          */
         LDAPMod** toLDAPModArray();