| 668 | |
| 669 | |
| 670 | int TiXmlElement::QueryUnsignedAttribute( const char* name, unsigned* value ) const |
| 671 | { |
| 672 | const TiXmlAttribute* node = attributeSet.Find( name ); |
| 673 | if ( !node ) |
| 674 | return TIXML_NO_ATTRIBUTE; |
| 675 | |
| 676 | int ival = 0; |
| 677 | int result = node->QueryIntValue( &ival ); |
| 678 | *value = (unsigned)ival; |
| 679 | return result; |
| 680 | } |
| 681 | |
| 682 | |
| 683 | int TiXmlElement::QueryBoolAttribute( const char* name, bool* bval ) const |
nothing calls this directly
no test coverage detected