MCPcopy Create free account
hub / github.com/SOUI2/soui / SetIntValue

Method SetIntValue

tools/src/uiresbuilder/tinyxml/tinyxml.cpp:1268–1277  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1266}
1267
1268void TiXmlAttribute::SetIntValue( int _value )
1269{
1270 char buf [64];
1271 #if defined(TIXML_SNPRINTF)
1272 TIXML_SNPRINTF(buf, sizeof(buf), "%d", _value);
1273 #else
1274 sprintf (buf, "%d", _value);
1275 #endif
1276 SetValue (buf);
1277}
1278
1279void TiXmlAttribute::SetDoubleValue( double _value )
1280{

Callers 1

SetAttributeMethod · 0.80

Calls 1

SetValueFunction · 0.85

Tested by

no test coverage detected