| 652 | |
| 653 | |
| 654 | int TiXmlElement::QueryUnsignedAttribute( const char* name, unsigned* value ) const |
| 655 | { |
| 656 | const TiXmlAttribute* node = attributeSet.Find( name ); |
| 657 | if ( !node ) |
| 658 | return TIXML_NO_ATTRIBUTE; |
| 659 | |
| 660 | int ival = 0; |
| 661 | int result = node->QueryIntValue( &ival ); |
| 662 | *value = (unsigned)ival; |
| 663 | return result; |
| 664 | } |
| 665 | |
| 666 | |
| 667 | int TiXmlElement::QueryBoolAttribute( const char* name, bool* bval ) const |
nothing calls this directly
no test coverage detected