コード例 #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 );
}