Home | History | Annotate | Download | only in tinyxml2

Lines Matching refs:QueryIntAttribute

779         use QueryIntAttribute() if you need error checking.

791 /** QueryIntAttribute interprets the attribute as an integer, and returns the value
796 /// See QueryIntAttribute
798 /// See QueryIntAttribute
800 /// See QueryIntAttribute
802 /// See QueryIntAttribute
882 checking, see QueryIntAttribute()
884 int IntAttribute( const char* name ) const { int i=0; QueryIntAttribute( name, &i ); return i; }
894 /** Given an attribute name, QueryIntAttribute() returns
904 QueryIntAttribute( "foo", &value ); // if "foo" isn't found, value will still be 10
907 int QueryIntAttribute( const char* name, int* _value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) return XML_NO_ATTRIBUTE; return a->QueryIntValue( _value ); }
908 /// See QueryIntAttribute()
910 /// See QueryIntAttribute()
912 /// See QueryIntAttribute()
914 /// See QueryIntAttribute()