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

Method First

ogsr_engine/xrCore/XML_Parser/tinyxml.h:865–865  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

863 void Remove(TiXmlAttribute* attribute);
864
865 const TiXmlAttribute* First() const { return (sentinel.next == &sentinel) ? 0 : sentinel.next; }
866 TiXmlAttribute* First() { return (sentinel.next == &sentinel) ? 0 : sentinel.next; }
867 const TiXmlAttribute* Last() const { return (sentinel.prev == &sentinel) ? 0 : sentinel.prev; }
868 TiXmlAttribute* Last() { return (sentinel.prev == &sentinel) ? 0 : sentinel.prev; }

Callers 5

ClearThisMethod · 0.80
PrintMethod · 0.80
CopyToMethod · 0.80
AcceptMethod · 0.80
FirstAttributeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected