| 860 | bool operator==( const TiXmlAttribute& rhs ) const { return rhs.name == name; } |
| 861 | bool operator<( const TiXmlAttribute& rhs ) const { return name < rhs.name; } |
| 862 | bool operator>( const TiXmlAttribute& rhs ) const { return name > rhs.name; } |
| 863 | |
| 864 | /* Attribute parsing starts: first letter of the name |
| 865 | returns: the next char after the value end quote |
nothing calls this directly
no outgoing calls
no test coverage detected