blob: 9ecf8a54034f18192db2e9074a4ab1eda0c58b3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// $OpenLDAP$
/*
* Copyright 2000-2021 The 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();
}
bool LDAPEntryList::empty() const{
return m_entries.empty();
}
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);
}
|