#include <edelib/TiXml.h>
Inheritance diagram for TiXmlAttribute:

Public Member Functions | |
| TiXmlAttribute () | |
| TiXmlAttribute (const char *_name, const char *_value) | |
| const char * | Name () const |
| const char * | Value () const |
| int | IntValue () const |
| double | DoubleValue () const |
| const edelib::String & | NameTStr () const |
| int | QueryIntValue (int *_value) const |
| int | QueryDoubleValue (double *_value) const |
| void | SetName (const char *_name) |
| void | SetValue (const char *_value) |
| void | SetIntValue (int _value) |
| void | SetDoubleValue (double _value) |
| const TiXmlAttribute * | Next () const |
| TiXmlAttribute * | Next () |
| const TiXmlAttribute * | Previous () const |
| TiXmlAttribute * | Previous () |
| bool | operator== (const TiXmlAttribute &rhs) const |
| bool | operator< (const TiXmlAttribute &rhs) const |
| bool | operator> (const TiXmlAttribute &rhs) const |
| virtual const char * | Parse (const char *p, TiXmlParsingData *data, TiXmlEncoding encoding) |
| virtual void | Print (FILE *cfile, int depth) const |
| void | Print (FILE *cfile, int depth, edelib::String *str) const |
Friends | |
| class | TiXmlAttributeSet |
An attribute is a name-value pair. Elements have an arbitrary number of attributes, each with a unique name.
| TiXmlAttribute | ( | ) | [inline] |
Construct an empty attribute
| TiXmlAttribute | ( | const char * | _name, | |
| const char * | _value | |||
| ) | [inline] |
Construct an attribute with a name and value.
| const char* Name | ( | ) | const [inline] |
Return the name of this attribute.
| const char* Value | ( | ) | const [inline] |
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.
| const edelib :: String& NameTStr | ( | ) | const [inline] |
Get the tinyxml string representation
| 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().
| void SetName | ( | const char * | _name | ) | [inline] |
Set the name of this attribute.
| void SetValue | ( | const char * | _value | ) | [inline] |
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.
| TiXmlAttribute* Next | ( | ) | [inline] |
Get the next sibling attribute in the DOM. Returns null at end.
| const TiXmlAttribute* Previous | ( | ) | const |
Get the previous sibling attribute in the DOM. Returns null at beginning.
| TiXmlAttribute* Previous | ( | ) | [inline] |
Get the previous sibling attribute in the DOM. Returns null at beginning.
| bool operator== | ( | const TiXmlAttribute & | rhs | ) | const [inline] |
Compares two attributes
| bool operator< | ( | const TiXmlAttribute & | rhs | ) | const [inline] |
Compares two attributes
| bool operator> | ( | const TiXmlAttribute & | rhs | ) | const [inline] |
Compares two attributes
| virtual const char* Parse | ( | const char * | p, | |
| TiXmlParsingData * | data, | |||
| TiXmlEncoding | encoding | |||
| ) | [virtual] |
Attribute parsing starts: first letter of the name returns: the next char after the value end quote
| virtual void Print | ( | FILE * | cfile, | |
| int | depth | |||
| ) | const [inline, virtual] |
Prints this Attribute to a FILE stream.
Implements TiXmlBase.
| void Print | ( | FILE * | cfile, | |
| int | depth, | |||
| edelib::String * | str | |||
| ) | const |
Prints this Attribute to a FILE stream.
1.5.2