Home | History | Annotate | Download | only in tinyxml2

Lines Matching refs:QueryIntValue

781     int         IntValue() const                { int i=0;        QueryIntValue( &i );        return i; }

795 int QueryIntValue( int* value ) const;
907 int QueryIntAttribute( const char* name, int* _value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) return XML_NO_ATTRIBUTE; return a->QueryIntValue( _value ); }