예제 #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 );	
}