|
#include <CXmlNodeList.h>

Public Member Functions | |
| CXmlNodeList () | |
| Constructor. | |
| ~CXmlNodeList () | |
| Destructor. | |
| void | clear () |
| Clears the list of XML nodes and releases all the allocated memory. | |
| iterator | findFirst (const char *nodeName) |
| Finds the first node node in the list with the matching name. | |
| iterator | findFirst (const std::string &nodeName) |
| Finds the first node node in the list with the matching name. | |
| const_iterator | findFirst (const char *nodeName) const |
| Finds the first node node in the list with the matching name. | |
| const_iterator | findFirst (const std::string &nodeName) const |
| Finds the first node node in the list with the matching name. | |
The CXmlNodeList interface provides the an ordered collection of nodes, The items in the NodeList are accessible via an integral index, starting from 0.
| const_iterator sptk::CXmlNodeList::findFirst | ( | const std::string & | nodeName | ) | const |
Finds the first node node in the list with the matching name.
| nodeName | const std::string&, a node name |
| const_iterator sptk::CXmlNodeList::findFirst | ( | const char * | nodeName | ) | const |
Finds the first node node in the list with the matching name.
| nodeName | const char*, a node name |
| iterator sptk::CXmlNodeList::findFirst | ( | const std::string & | nodeName | ) |
Finds the first node node in the list with the matching name.
| nodeName | const std::string&, a node name |
| iterator sptk::CXmlNodeList::findFirst | ( | const char * | nodeName | ) |
Finds the first node node in the list with the matching name.
| nodeName | const char*, a node name |