| 685 | |
| 686 | |
| 687 | int TiXmlElement::QueryUnsignedAttribute( const char* name, unsigned* value ) const |
| 688 | { |
| 689 | const TiXmlAttribute* node = attributeSet.Find( name ); |
| 690 | if ( !node ) |
| 691 | return TIXML_NO_ATTRIBUTE; |
| 692 | |
| 693 | int ival = 0; |
| 694 | int result = node->QueryIntValue( &ival ); |
| 695 | *value = (unsigned)ival; |
| 696 | return result; |
| 697 | } |
| 698 | |
| 699 | |
| 700 | int TiXmlElement::QueryBoolAttribute( const char* name, bool* bval ) const |
nothing calls this directly
no test coverage detected