MCPcopy Create free account
hub / github.com/acl-dev/acl / next_node

Method next_node

lib_acl_cpp/src/stdlib/xml2.cpp:526–538  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

524}
525
526xml_node* xml2::next_node()
527{
528 acl_assert(iter_);
529
530 ACL_XML2_NODE* node = xml_->iter_next(iter_, xml_);
531 if (node == NULL) {
532 return NULL;
533 }
534
535 xml2_node* n = dbuf_.create<xml2_node, xml2*, ACL_XML2_NODE*>
536 (this, node);
537 return n;
538}
539
540void xml2::build_xml(string& out) const
541{

Callers 15

do_xmlMethod · 0.45
do_jsonMethod · 0.45
do_xmlMethod · 0.45
do_jsonMethod · 0.45
do_xmlMethod · 0.45
do_jsonMethod · 0.45
testFunction · 0.45
testFunction · 0.45
test2Function · 0.45
do_xmlMethod · 0.45
do_jsonMethod · 0.45
mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected