MCPcopy Create free account
hub / github.com/cinder/Cinder / getPath

Method getPath

src/cinder/Xml.cpp:310–324  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

308}
309
310string XmlTree::getPath( char separator ) const
311{
312 string result;
313
314 const XmlTree *node = this;
315 while( node ) {
316 string nodeName = node->getTag();
317 if( node != this )
318 nodeName += separator;
319 result = nodeName + result;
320 node = node->mParent;
321 }
322
323 return result;
324}
325
326void XmlTree::push_back( const XmlTree &newChild )
327{

Callers 10

setupMethod · 0.45
ImplMethod · 0.45
ExcChildNotFoundMethod · 0.45
ExcAttrNotFoundMethod · 0.45
path2dpart3.jsFile · 0.45
rFunction · 0.45
path2dpart2.jsFile · 0.45
rFunction · 0.45
path2dpart1.jsFile · 0.45
rFunction · 0.45

Calls

no outgoing calls

Tested by 1

setupMethod · 0.36