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

Method Accept

cpp/tinyxml/tinyxml.cpp:848–859  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

846}
847
848bool TiXmlElement::Accept( TiXmlVisitor* visitor ) const
849{
850 if ( visitor->VisitEnter( *this, attributeSet.First() ) )
851 {
852 for ( const TiXmlNode* node=FirstChild(); node; node=node->NextSibling() )
853 {
854 if ( !node->Accept( visitor ) )
855 break;
856 }
857 }
858 return visitor->VisitExit( *this );
859}
860
861
862TiXmlNode* TiXmlElement::Clone() const

Callers 1

tinyxml.cppFile · 0.80

Calls 5

FirstMethod · 0.80
VisitEnterMethod · 0.45
NextSiblingMethod · 0.45
VisitExitMethod · 0.45
VisitMethod · 0.45

Tested by

no test coverage detected