Changeset 79808 in vbox for trunk/include/iprt/cpp
- Timestamp:
- Jul 16, 2019 2:04:51 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/xml.h
r79799 r79808 504 504 ///< NULL if this is a content node 505 505 506 /** Child list entry of this node. (List head m_pParent->m_children.) */ 506 /** Child list entry of this node. (List head m_pParent->m_children or 507 * m_pParent->m_attribute depending on the type.) */ 507 508 RTLISTNODE m_listEntry; 508 509 /** Pointer to the parent list anchor. … … 775 776 /** @} */ 776 777 778 /** @name Attribute enumeration 779 * @{ */ 780 781 /** Get the first attribute node. 782 * @returns Pointer to the first child node, NULL if no attributes. */ 783 const AttributeNode *getFirstAttribute() const 784 { 785 return RTListGetFirstCpp(&m_attributes, const AttributeNode, m_listEntry); 786 } 787 788 /** Get the last attribute node. 789 * @returns Pointer to the last child node, NULL if no attributes. */ 790 const AttributeNode *getLastAttribute() const 791 { 792 return RTListGetLastCpp(&m_attributes, const AttributeNode, m_listEntry); 793 } 794 795 /** @} */ 777 796 778 797 const AttributeNode *findAttribute(const char *pcszMatch, const char *pcszNamespace = NULL) const;
Note:
See TracChangeset
for help on using the changeset viewer.