示例#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 );	
}