예제 #1
0
파일: tinyxml.cpp 프로젝트: dos5gw/TMeter
void TiXmlComment::operator=( const TiXmlComment& base )
{
	Clear();
	base.CopyTo( this );
}
예제 #2
0
파일: tinyxml.cpp 프로젝트: dos5gw/TMeter
TiXmlComment::TiXmlComment( const TiXmlComment& copy ) : TiXmlNode( TiXmlNode::TINYXML_COMMENT )
{
	copy.CopyTo( this );
}