| 854 | /// Get the previous sibling attribute in the DOM. Returns null at beginning. |
| 855 | const TiXmlAttribute* Previous() const; |
| 856 | TiXmlAttribute* Previous() { |
| 857 | return const_cast< TiXmlAttribute* >( (const_cast< const TiXmlAttribute* >(this))->Previous() ); |
| 858 | } |
| 859 | |
| 860 | bool operator==( const TiXmlAttribute& rhs ) const { return rhs.name == name; } |
| 861 | bool operator<( const TiXmlAttribute& rhs ) const { return name < rhs.name; } |
nothing calls this directly
no outgoing calls
no test coverage detected