8 #ifndef LDAP_MOD_LIST_H 9 #define LDAP_MOD_LIST_H 19 typedef std::list<LDAPModification> ListType;
52 unsigned int size()
const;
57 #endif //LDAP_MOD_LIST_H
LDAPMod ** toLDAPModArray()
Translates the list to a 0-terminated array of LDAPMod-structures as needed by the C-API...
Definition: LDAPModList.cpp:29
This container class is used to store multiple LDAPModification-objects.
Definition: LDAPModList.h:18
void addModification(const LDAPModification &mod)
Adds one element to the end of the list.
Definition: LDAPModList.cpp:24
LDAPModList()
Constructs an empty list.
Definition: LDAPModList.cpp:15
unsigned int size() const
Definition: LDAPModList.cpp:46
bool empty() const
Definition: LDAPModList.cpp:42
Definition: LDAPModification.h:14