Name-value pair. More...
#include <edelib/TiXml.h>
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 |
Name-value pair.
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.
double DoubleValue | ( | ) | const |
Return the value of this attribute, converted to a double.
int IntValue | ( | ) | const |
Return the value of this attribute, converted to an integer.
const char* Name | ( | ) | const [inline] |
Return the name of this attribute.
const edelib :: String& NameTStr | ( | ) | const [inline] |
Get the tinyxml string representation
TiXmlAttribute* Next | ( | ) | [inline] |
Get the next sibling attribute in the DOM. Returns null at end.
const TiXmlAttribute* Next | ( | ) | const |
Get the next sibling attribute in the DOM. Returns null at end.
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
TiXmlAttribute* Previous | ( | ) | [inline] |
Get the previous sibling attribute in the DOM. Returns null at beginning.
const TiXmlAttribute* Previous | ( | ) | const |
Get the previous sibling attribute in the DOM. Returns null at beginning.
void Print | ( | FILE * | cfile, | |
int | depth, | |||
edelib::String * | str | |||
) | const |
Prints this Attribute to a FILE stream.
virtual void Print | ( | FILE * | cfile, | |
int | depth | |||
) | const [inline, virtual] |
int QueryDoubleValue | ( | double * | _value | ) | const |
QueryDoubleValue examines the value string. See QueryIntValue().
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.
void SetDoubleValue | ( | double | _value | ) |
Set the value from a double.
void SetIntValue | ( | int | _value | ) |
Set the value from an integer.
void SetName | ( | const char * | _name | ) | [inline] |
Set the name of this attribute.
void SetValue | ( | const char * | _value | ) | [inline] |
Set the value.
const char* Value | ( | ) | const [inline] |
Return the value of this attribute.