| 561 | */ |
| 562 | const TiXmlNode* IterateChildren( const TiXmlNode* previous ) const; |
| 563 | TiXmlNode* IterateChildren( const TiXmlNode* previous ) { |
| 564 | return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->IterateChildren( previous ) ); |
| 565 | } |
| 566 | |
| 567 | /// This flavor of IterateChildren searches for children with a particular 'value' |
| 568 | const TiXmlNode* IterateChildren( const char * value, const TiXmlNode* previous ) const; |