MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / LastChild

Method LastChild

cpp/tinyxml/tinyxml.cpp:354–363  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

352
353
354const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const
355{
356 const TiXmlNode* node;
357 for ( node = lastChild; node; node = node->prev )
358 {
359 if ( strcmp( node->Value(), _value ) == 0 )
360 return node;
361 }
362 return 0;
363}
364
365
366const TiXmlNode* TiXmlNode::IterateChildren( const TiXmlNode* previous ) const

Callers 1

VisitEnterMethod · 0.45

Calls 1

ValueMethod · 0.45

Tested by

no test coverage detected