Go to the documentation of this file.
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
unsigned int size() const
Definition: LDAPModList.cpp:46
#define LDAP_DEBUG_TRACE
Definition: debug.h:12
#define DEBUG(level, arg)
Definition: debug.h:30
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
#define LDAP_DEBUG_CONSTRUCT
Definition: debug.h:13
LDAPMod ** toLDAPModArray()
Translates the list to a 0-terminated array of LDAPMod-structures as needed by the C-API.
Definition: LDAPModList.cpp:29
bool empty() const
Definition: LDAPModList.cpp:42
Definition: LDAPModification.h:14
This container class is used to store multiple LDAPModification-objects.
Definition: LDAPModList.h:18