Beispiel #1
0
	void TiXmlElement::operator=( const TiXmlElement& base )
	{
		ClearThis();
		base.CopyTo( this );
	}
Beispiel #2
0
	TiXmlElement::TiXmlElement( const TiXmlElement& copy)
		: TiXmlNode( TiXmlNode::ELEMENT )
	{
		firstChild = lastChild = 0;
		copy.CopyTo( this );	
	}