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

Method next_child

lib_acl_cpp/src/stdlib/xml2.cpp:201–214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

199}
200
201xml_node* xml2_node::next_child()
202{
203 acl_assert(child_iter_);
204
205 ACL_XML2_NODE* node = node_->iter_next(child_iter_, node_);
206 if (node == NULL) {
207 return NULL;
208 }
209
210 xml2_node* n = NEW xml2_node(xml_, node);
211 nodes_tmp_.push_back(n);
212
213 return n;
214}
215
216int xml2_node::depth() const
217{

Callers 15

testFunction · 0.45
xml_node_walkFunction · 0.45
mainFunction · 0.45
testFunction · 0.45
xml_node_walkFunction · 0.45
mainFunction · 0.45
testFunction · 0.45
testFunction · 0.45
list_printFunction · 0.45
testFunction · 0.45
mainFunction · 0.45
create_masterMethod · 0.45

Calls 2

xml2_nodeClass · 0.50
push_backMethod · 0.45

Tested by

no test coverage detected