mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
36 lines
659 B
C++
36 lines
659 B
C++
|
|
/*
|
||
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
||
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
||
|
|
*/
|
||
|
|
|
||
|
|
|
||
|
|
#include "LDAPEntryList.h"
|
||
|
|
#include "LDAPEntry.h"
|
||
|
|
|
||
|
|
LDAPEntryList::LDAPEntryList(){
|
||
|
|
}
|
||
|
|
|
||
|
|
LDAPEntryList::LDAPEntryList(const LDAPEntryList& e){
|
||
|
|
m_entries = e.m_entries;
|
||
|
|
}
|
||
|
|
|
||
|
|
LDAPEntryList::~LDAPEntryList(){
|
||
|
|
}
|
||
|
|
|
||
|
|
size_t LDAPEntryList::size() const{
|
||
|
|
return m_entries.size();
|
||
|
|
}
|
||
|
|
|
||
|
|
LDAPEntryList::const_iterator LDAPEntryList::begin() const{
|
||
|
|
return m_entries.begin();
|
||
|
|
}
|
||
|
|
|
||
|
|
LDAPEntryList::const_iterator LDAPEntryList::end() const{
|
||
|
|
return m_entries.end();
|
||
|
|
}
|
||
|
|
|
||
|
|
void LDAPEntryList::addEntry(const LDAPEntry& e){
|
||
|
|
m_entries.push_back(e);
|
||
|
|
}
|
||
|
|
|