Example #1
0
void XmlElement::operator=( const XmlElement& base )
{
	ClearThis();
	base.CopyTo( this );
}
Example #2
0
XmlElement::XmlElement( const XmlElement& copy)
	: XmlNode( XmlNode::TINYXML_ELEMENT )
{
	firstChild = lastChild = 0;
	copy.CopyTo( this );	
}