MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / Clone

Method Clone

ogsr_engine/xrCore/XML_Parser/tinyxml.cpp:805–813  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

803}
804
805TiXmlNode* TiXmlElement::Clone() const
806{
807 TiXmlElement* clone = xr_new<TiXmlElement>(Value());
808 if (!clone)
809 return 0;
810
811 CopyTo(clone);
812 return clone;
813}
814
815const char* TiXmlElement::GetText() const
816{

Callers 5

InsertEndChildMethod · 0.80
InsertBeforeChildMethod · 0.80
InsertAfterChildMethod · 0.80
ReplaceChildMethod · 0.80
CopyToMethod · 0.80

Calls 1

ValueFunction · 0.50

Tested by

no test coverage detected