Class TiXmlAttribute
Defined in File tinyxml.h
Inheritance Relationships
Base Type
public TiXmlBase
(Class TiXmlBase)
Class Documentation
-
class TiXmlAttribute : public TiXmlBase
An attribute is a name-value pair. Elements have an arbitrary number of attributes, each with a unique name.
Note
The attributes are not TiXmlNodes, since they are not part of the tinyXML document object model. There are other suggested ways to look at this problem.
Public Functions
-
inline TiXmlAttribute()
Construct an empty attribute.
-
inline TiXmlAttribute(const char *_name, const char *_value)
Construct an attribute with a name and value.
-
inline const char *Name() const
Return the name of this attribute.
-
inline const char *Value() const
Return the value of this attribute.
-
int IntValue() const
Return the value of this attribute, converted to an integer.
-
double DoubleValue() const
Return the value of this attribute, converted to a double.
-
inline const TIXML_STRING &NameTStr() const
-
int QueryIntValue(int *_value) const
QueryIntValue examines the value string. It is an alternative to the IntValue() method with richer error checking. If the value is an integer, it is stored in ‘value’ and the call returns TIXML_SUCCESS. If it is not an integer, it returns TIXML_WRONG_TYPE.
A specialized but useful call. Note that for success it returns 0, which is the opposite of almost all other TinyXml calls.
-
int QueryDoubleValue(double *_value) const
QueryDoubleValue examines the value string. See QueryIntValue().
-
inline void SetName(const char *_name)
Set the name of this attribute.
-
inline void SetValue(const char *_value)
Set the value.
-
void SetIntValue(int _value)
Set the value from an integer.
-
void SetDoubleValue(double _value)
Set the value from a double.
-
const TiXmlAttribute *Next() const
Get the next sibling attribute in the DOM. Returns null at end.
-
inline TiXmlAttribute *Next()
-
const TiXmlAttribute *Previous() const
Get the previous sibling attribute in the DOM. Returns null at beginning.
-
inline TiXmlAttribute *Previous()
-
inline bool operator==(const TiXmlAttribute &rhs) const
-
inline bool operator<(const TiXmlAttribute &rhs) const
-
inline bool operator>(const TiXmlAttribute &rhs) const
-
virtual const char *Parse(const char *p, TiXmlParsingData *data, TiXmlEncoding encoding)
-
inline virtual void Print(FILE *cfile, int depth) const
All TinyXml classes can print themselves to a filestream or the string class (TiXmlString in non-STL mode, std::string in STL mode.) Either or both cfile and str can be null.
This is a formatted print, and will insert tabs and newlines.
(For an unformatted stream, use the << operator.)
-
void Print(FILE *cfile, int depth, TIXML_STRING *str) const
-
inline void SetDocument(TiXmlDocument *doc)
-
inline TiXmlAttribute()