mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-21 07:09:34 -05:00
36 lines
721 B
C++
36 lines
721 B
C++
|
|
/*
|
||
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
||
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
||
|
|
*/
|
||
|
|
|
||
|
|
|
||
|
|
#include "LDAPReferenceList.h"
|
||
|
|
#include "LDAPSearchReference.h"
|
||
|
|
|
||
|
|
LDAPReferenceList::LDAPReferenceList(){
|
||
|
|
}
|
||
|
|
|
||
|
|
LDAPReferenceList::LDAPReferenceList(const LDAPReferenceList& e){
|
||
|
|
m_refs = e.m_refs;
|
||
|
|
}
|
||
|
|
|
||
|
|
LDAPReferenceList::~LDAPReferenceList(){
|
||
|
|
}
|
||
|
|
|
||
|
|
size_t LDAPReferenceList::size() const{
|
||
|
|
return m_refs.size();
|
||
|
|
}
|
||
|
|
|
||
|
|
LDAPReferenceList::const_iterator LDAPReferenceList::begin() const{
|
||
|
|
return m_refs.begin();
|
||
|
|
}
|
||
|
|
|
||
|
|
LDAPReferenceList::const_iterator LDAPReferenceList::end() const{
|
||
|
|
return m_refs.end();
|
||
|
|
}
|
||
|
|
|
||
|
|
void LDAPReferenceList::addReference(const LDAPSearchReference& e){
|
||
|
|
m_refs.push_back(e);
|
||
|
|
}
|
||
|
|
|