MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / Clone

Method Clone

cpp/tinyxml/tinyxml.cpp:862–870  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

860
861
862TiXmlNode* TiXmlElement::Clone() const
863{
864 TiXmlElement* clone = new (std::nothrow) TiXmlElement( Value() );
865 if ( !clone )
866 return 0;
867
868 CopyTo( clone );
869 return clone;
870}
871
872
873const char* TiXmlElement::GetText() const

Callers 5

InsertEndChildMethod · 0.45
InsertBeforeChildMethod · 0.45
InsertAfterChildMethod · 0.45
ReplaceChildMethod · 0.45
CopyToMethod · 0.45

Calls 1

ValueClass · 0.50

Tested by

no test coverage detected