| 643 | */ |
| 644 | const TiXmlElement* NextSiblingElement() const; |
| 645 | TiXmlElement* NextSiblingElement() { |
| 646 | return const_cast< TiXmlElement* >( (const_cast< const TiXmlNode* >(this))->NextSiblingElement() ); |
| 647 | } |
| 648 | |
| 649 | /** Convenience function to get through elements. |
| 650 | Calls NextSibling and ToElement. Will skip all non-Element |