Example #1
0
void TiXmlElement::SetAttribute( const char * name, unsigned long val )
{
	TiXmlAttribute* attrib = attributeSet.FindOrCreate( name );
	if ( attrib ) {
		attrib->SetUnLongValue( val );
	}
}