#include <tinyxml.h>
Definition at line 1046 of file tinyxml.h.
◆ TiXmlAttributeSet() [1/2]
TiXmlAttributeSet::TiXmlAttributeSet |
( |
| ) |
|
◆ ~TiXmlAttributeSet()
TiXmlAttributeSet::~TiXmlAttributeSet |
( |
| ) |
|
◆ TiXmlAttributeSet() [2/2]
◆ Add()
Definition at line 1427 of file tinyxml.cpp.
1428 #ifdef TIXML_USE_STL 1432 assert(!
Find(addMe->Name()));
const TiXmlAttribute * Find(const char *_name) const
◆ Find() [1/4]
const TiXmlAttribute * TiXmlAttributeSet::Find |
( |
const char * |
_name | ) |
const |
Definition at line 1482 of file tinyxml.cpp.
Referenced by Find().
1484 node = node->
next) {
1485 if (strcmp(node->name.c_str(), name) == 0)
return node;
An attribute is a name-value pair.
◆ Find() [2/4]
Definition at line 1068 of file tinyxml.h.
References Find().
An attribute is a name-value pair.
◆ Find() [3/4]
const TiXmlAttribute * TiXmlAttributeSet::Find |
( |
const std::string & |
_name | ) |
const |
Definition at line 1459 of file tinyxml.cpp.
Referenced by Find().
1461 node = node->
next) {
1462 if (node->name == name)
return node;
An attribute is a name-value pair.
◆ Find() [4/4]
Definition at line 1074 of file tinyxml.h.
References Find().
An attribute is a name-value pair.
◆ First() [1/2]
◆ First() [2/2]
◆ Last() [1/2]
◆ Last() [2/2]
◆ operator=()
◆ Remove()
Definition at line 1442 of file tinyxml.cpp.
1446 if (node == removeMe) {
An attribute is a name-value pair.
◆ sentinel
The documentation for this class was generated from the following files: