Exemplo n.º 1
0
void TiXmlElement::SetAttribute( const std::string& name, long int val )
{
	TiXmlAttribute* attrib = attributeSet.FindOrCreate( name );
	if ( attrib ) {
		attrib->SetLongIntValue( val );
	}
}