diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 11:11:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 11:11:40 +0000 |
commit | 7731832751ab9f3c6ddeb66f186d3d7fa1934a6d (patch) | |
tree | e91015872543a59be2aad26c2fea02e41b57005d /contrib/ldapc++/src/LDAPEntryList.h | |
parent | Initial commit. (diff) | |
download | openldap-7731832751ab9f3c6ddeb66f186d3d7fa1934a6d.tar.xz openldap-7731832751ab9f3c6ddeb66f186d3d7fa1934a6d.zip |
Adding upstream version 2.4.57+dfsg.upstream/2.4.57+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'contrib/ldapc++/src/LDAPEntryList.h')
-rw-r--r-- | contrib/ldapc++/src/LDAPEntryList.h | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/contrib/ldapc++/src/LDAPEntryList.h b/contrib/ldapc++/src/LDAPEntryList.h new file mode 100644 index 0000000..77cb0f2 --- /dev/null +++ b/contrib/ldapc++/src/LDAPEntryList.h @@ -0,0 +1,70 @@ +// $OpenLDAP$ +/* + * Copyright 2000-2021 The OpenLDAP Foundation, All Rights Reserved. + * COPYING RESTRICTIONS APPLY, see COPYRIGHT file + */ + +#ifndef LDAP_ENTRY_LIST_H +#define LDAP_ENTRY_LIST_H + +#include <cstdio> +#include <list> + +class LDAPEntry; + +/** + * For internal use only. + * + * This class is used by LDAPSearchResults to store a std::list of + * LDAPEntry-Objects + */ +class LDAPEntryList{ + typedef std::list<LDAPEntry> ListType; + + public: + typedef ListType::const_iterator const_iterator; + + /** + * Copy-Constructor + */ + LDAPEntryList(const LDAPEntryList& el); + + /** + * Default-Constructor + */ + LDAPEntryList(); + + /** + * Destructor + */ + ~LDAPEntryList(); + + /** + * @return The number of entries currently stored in the list. + */ + size_t size() const; + + /** + * @return true if there are zero entries currently stored in the list. + */ + bool empty() const; + + /** + * @return An iterator pointing to the first element of the list. + */ + const_iterator begin() const; + + /** + * @return An iterator pointing to the end of the list + */ + const_iterator end() const; + + /** + * Adds an Entry to the end of the list. + */ + void addEntry(const LDAPEntry& e); + + private: + ListType m_entries; +}; +#endif // LDAP_ENTRY_LIST_H |