| 848 | /// Get the next sibling attribute in the DOM. Returns null at end. |
| 849 | const TiXmlAttribute* Next() const; |
| 850 | TiXmlAttribute* Next() { |
| 851 | return const_cast< TiXmlAttribute* >( (const_cast< const TiXmlAttribute* >(this))->Next() ); |
| 852 | } |
| 853 | |
| 854 | /// Get the previous sibling attribute in the DOM. Returns null at beginning. |
| 855 | const TiXmlAttribute* Previous() const; |
nothing calls this directly
no outgoing calls
no test coverage detected