| 1084 | const TiXmlAttribute* FirstAttribute() const { return attributeSet.First(); } ///< Access the first attribute in this element. |
| 1085 | TiXmlAttribute* FirstAttribute() { return attributeSet.First(); } |
| 1086 | const TiXmlAttribute* LastAttribute() const { return attributeSet.Last(); } ///< Access the last attribute in this element. |
| 1087 | TiXmlAttribute* LastAttribute() { return attributeSet.Last(); } |
| 1088 | |
| 1089 | /** Convenience function for easy access to the text inside an element. Although easy |