|
#define | forEachXmlChildElement(parentXmlElement, childElementVariableName) for (auto* (childElementVariableName) : ((parentXmlElement).macroBasedForLoop(), (parentXmlElement).getChildIterator())) |
| DEPRECATED: A handy macro to make it easy to iterate all the child elements in an XmlElement. More...
|
|
#define | forEachXmlChildElementWithTagName(parentXmlElement, childElementVariableName, requiredTagName) for (auto* (childElementVariableName) : ((parentXmlElement).macroBasedForLoop(), (parentXmlElement).getChildWithTagNameIterator ((requiredTagName)))) |
| DEPRECATED: A macro that makes it easy to iterate all the child elements of an XmlElement which have a specified tag. More...
|
|