コード例 #1
0
ファイル: tinyxml.cpp プロジェクト: oksangman/Ant
void XmlElement::operator=( const XmlElement& base )
{
	ClearThis();
	base.CopyTo( this );
}
コード例 #2
0
ファイル: tinyxml.cpp プロジェクト: oksangman/Ant
XmlElement::XmlElement( const XmlElement& copy)
	: XmlNode( XmlNode::TINYXML_ELEMENT )
{
	firstChild = lastChild = 0;
	copy.CopyTo( this );	
}