#include <tinyxml.h>
Definition at line 1046 of file tinyxml.h.
◆ TiXmlAttributeSet() [1/2]
| TiXmlAttributeSet::TiXmlAttributeSet |
( |
| ) |
|
◆ ~TiXmlAttributeSet()
| TiXmlAttributeSet::~TiXmlAttributeSet |
( |
| ) |
|
◆ TiXmlAttributeSet() [2/2]
◆ Add()
◆ Find() [1/4]
◆ Find() [2/4]
| const TiXmlAttribute * TiXmlAttributeSet::Find |
( |
const char * | _name | ) |
const |
Definition at line 1482 of file tinyxml.cpp.
1482 {
1484 node = node->next) {
1485 if (strcmp(node->name.c_str(), name) == 0) return node;
1486 }
1487
1488 return 0;
1489}
References sentinel.
Referenced by Add().
◆ Find() [3/4]
◆ Find() [4/4]
| const TiXmlAttribute * TiXmlAttributeSet::Find |
( |
const std::string & | _name | ) |
const |
Definition at line 1459 of file tinyxml.cpp.
1459 {
1461 node = node->next) {
1462 if (node->name == name) return node;
1463 }
1464
1465 return 0;
1466}
References sentinel.
◆ First() [1/2]
◆ First() [2/2]
◆ Last() [1/2]
◆ Last() [2/2]
◆ operator=()
◆ Remove()
◆ sentinel
The documentation for this class was generated from the following files: