| 1079 | void RemoveAttribute( const char * name ); |
| 1080 | #ifdef TIXML_USE_STL |
| 1081 | void RemoveAttribute( const std::string& name ) { RemoveAttribute (name.c_str ()); } ///< STL std::string form. |
| 1082 | #endif |
| 1083 | |
| 1084 | const TiXmlAttribute* FirstAttribute() const { return attributeSet.First(); } ///< Access the first attribute in this element. |