Can anyone help me to let me know whats happening in the below code when ,
data=cs.data;
happens
as FYI,
data is an empty list created of type std::list
and the constructor definition given below is a copy constructor
LDAPControlSet::LDAPControlSet(const LDAPControlSet& cs){
DEBUG(LDAP_DEBUG_CONSTRUCT,"LDAPControlSet::LDAPControlSet(&)" << endl);
data=cs.data;
}
thanks in advance