Example #1
0
bool XmlNode::getSubNodeValue( const String &tag,float &value ) const
{
	XmlNodeRef node = findChild( tag );
	if (node) {
		node->getValue( value );
		return true;
	}
	return false;
}