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