Multi-line svn commit, see body.
[shibboleth/cpp-xmltooling.git] / xmltooling / AbstractComplexElement.cpp
index c3aa5aa..5555971 100644 (file)
 #include <algorithm>
 
 using namespace xmltooling;
+using namespace std;
 
 AbstractComplexElement::~AbstractComplexElement() {
-    std::for_each(m_children.begin(), m_children.end(), cleanup<XMLObject>());
+    for_each(m_children.begin(), m_children.end(), cleanup<XMLObject>());
+    for (vector<XMLCh*>::iterator i=m_text.begin(); i!=m_text.end(); ++i)
+        XMLString::release(&(*i));
 }
 
 void AbstractComplexElement::removeChild(XMLObject* child)
 {
-    m_children.erase(std::remove(m_children.begin(), m_children.end(), child), m_children.end());
+    m_children.erase(remove(m_children.begin(), m_children.end(), child), m_children.end());
+}
+
+AbstractComplexElement::AbstractComplexElement(const AbstractComplexElement& src)
+{
+    for (vector<XMLCh*>::const_iterator i=src.m_text.begin(); i!=src.m_text.end(); ++i)
+        m_text.push_back(XMLString::replicate(*i));
+}
+
+void AbstractComplexElement::setTextContent(const XMLCh* value, unsigned int position)
+{
+    if (position > m_children.size())
+        throw XMLObjectException("Can't set text content relative to non-existent child position.");
+    vector<XMLCh*>::size_type size = m_text.size();
+    while (position >= size) {
+        m_text.push_back(NULL);
+        ++size;
+    }
+    m_text[position]=prepareForAssignment(m_text[position],value);
 }