MCPcopy Create free account
hub / github.com/bulletphysics/bullet3 / Accept

Method Accept

examples/ThirdPartyLibs/tinyxml2/tinyxml2.cpp:767–781  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

765}
766
767bool XMLDocument::Accept(XMLVisitor* visitor) const
768{
769 TIXMLASSERT(visitor);
770 if (visitor->VisitEnter(*this))
771 {
772 for (const XMLNode* node = FirstChild(); node; node = node->NextSibling())
773 {
774 if (!node->Accept(visitor))
775 {
776 break;
777 }
778 }
779 }
780 return visitor->VisitExit(*this);
781}
782
783// --------- XMLNode ----------- //
784

Callers 4

CreateTCPEchoServerFunction · 0.45
mainFunction · 0.45
TCPThreadFuncFunction · 0.45
mainFunction · 0.45

Calls 4

FirstChildFunction · 0.85
VisitEnterMethod · 0.80
VisitExitMethod · 0.80
VisitMethod · 0.80

Tested by

no test coverage detected