#include <tinyxml2.h>
Public Member Functions | |
bool | BoolValue () const |
Query as a boolean. See IntValue() More... | |
double | DoubleValue () const |
Query as a double. See IntValue() More... | |
float | FloatValue () const |
Query as a float. See IntValue() More... | |
int | IntValue () const |
const char * | Name () const |
The name of the attribute. More... | |
const XMLAttribute * | Next () const |
The next attribute in the list. More... | |
XMLError | QueryBoolValue (bool *value) const |
See QueryIntValue. More... | |
XMLError | QueryDoubleValue (double *value) const |
See QueryIntValue. More... | |
XMLError | QueryFloatValue (float *value) const |
See QueryIntValue. More... | |
XMLError | QueryIntValue (int *value) const |
XMLError | QueryUnsignedValue (unsigned int *value) const |
See QueryIntValue. More... | |
void | SetAttribute (const char *value) |
Set the attribute to a string value. More... | |
void | SetAttribute (int value) |
Set the attribute to value. More... | |
void | SetAttribute (unsigned value) |
Set the attribute to value. More... | |
void | SetAttribute (bool value) |
Set the attribute to value. More... | |
void | SetAttribute (double value) |
Set the attribute to value. More... | |
void | SetAttribute (float value) |
Set the attribute to value. More... | |
unsigned | UnsignedValue () const |
Query as an unsigned integer. See IntValue() More... | |
const char * | Value () const |
The value of the attribute. More... | |
Private Types | |
enum | { BUF_SIZE = 200 } |
Private Member Functions | |
void | operator= (const XMLAttribute &) |
char * | ParseDeep (char *p, bool processEntities) |
void | SetName (const char *name) |
XMLAttribute () | |
XMLAttribute (const XMLAttribute &) | |
virtual | ~XMLAttribute () |
Private Attributes | |
MemPool * | _memPool |
StrPair | _name |
XMLAttribute * | _next |
StrPair | _value |
Friends | |
class | XMLElement |
An attribute is a name-value pair. Elements have an arbitrary number of attributes, each with a unique name.
Definition at line 1054 of file tinyxml2.h.
|
private |
Enumerator | |
---|---|
BUF_SIZE |
Definition at line 1131 of file tinyxml2.h.
|
inlineprivate |
Definition at line 1133 of file tinyxml2.h.
|
inlineprivatevirtual |
Definition at line 1134 of file tinyxml2.h.
|
private |
|
inline |
Query as a boolean. See IntValue()
Definition at line 1085 of file tinyxml2.h.
|
inline |
Query as a double. See IntValue()
Definition at line 1091 of file tinyxml2.h.
|
inline |
Query as a float. See IntValue()
Definition at line 1097 of file tinyxml2.h.
|
inline |
IntValue interprets the attribute as an integer, and returns the value. If the value isn't an integer, 0 will be returned. There is no error checking; use QueryIntValue() if you need error checking.
Definition at line 1073 of file tinyxml2.h.
const char * tinyxml2::XMLAttribute::Name | ( | ) | const |
The name of the attribute.
Definition at line 1240 of file tinyxml2.cpp.
|
inline |
The next attribute in the list.
Definition at line 1065 of file tinyxml2.h.
|
private |
|
private |
Definition at line 1250 of file tinyxml2.cpp.
XMLError tinyxml2::XMLAttribute::QueryBoolValue | ( | bool * | value | ) | const |
See QueryIntValue.
Definition at line 1302 of file tinyxml2.cpp.
XMLError tinyxml2::XMLAttribute::QueryDoubleValue | ( | double * | value | ) | const |
See QueryIntValue.
Definition at line 1320 of file tinyxml2.cpp.
XMLError tinyxml2::XMLAttribute::QueryFloatValue | ( | float * | value | ) | const |
See QueryIntValue.
Definition at line 1311 of file tinyxml2.cpp.
XMLError tinyxml2::XMLAttribute::QueryIntValue | ( | int * | value | ) | const |
QueryIntValue interprets the attribute as an integer, and returns the value in the provided parameter. The function will return XML_NO_ERROR on success, and XML_WRONG_ATTRIBUTE_TYPE if the conversion is not successful.
Definition at line 1284 of file tinyxml2.cpp.
XMLError tinyxml2::XMLAttribute::QueryUnsignedValue | ( | unsigned int * | value | ) | const |
See QueryIntValue.
Definition at line 1293 of file tinyxml2.cpp.
void tinyxml2::XMLAttribute::SetAttribute | ( | const char * | value | ) |
Set the attribute to a string value.
Definition at line 1329 of file tinyxml2.cpp.
void tinyxml2::XMLAttribute::SetAttribute | ( | int | value | ) |
Set the attribute to value.
Definition at line 1335 of file tinyxml2.cpp.
void tinyxml2::XMLAttribute::SetAttribute | ( | unsigned | value | ) |
Set the attribute to value.
Definition at line 1343 of file tinyxml2.cpp.
void tinyxml2::XMLAttribute::SetAttribute | ( | bool | value | ) |
Set the attribute to value.
Definition at line 1351 of file tinyxml2.cpp.
void tinyxml2::XMLAttribute::SetAttribute | ( | double | value | ) |
Set the attribute to value.
Definition at line 1358 of file tinyxml2.cpp.
void tinyxml2::XMLAttribute::SetAttribute | ( | float | value | ) |
Set the attribute to value.
Definition at line 1365 of file tinyxml2.cpp.
|
private |
Definition at line 1278 of file tinyxml2.cpp.
|
inline |
Query as an unsigned integer. See IntValue()
Definition at line 1079 of file tinyxml2.h.
const char * tinyxml2::XMLAttribute::Value | ( | ) | const |
The value of the attribute.
Definition at line 1245 of file tinyxml2.cpp.
|
friend |
Definition at line 1056 of file tinyxml2.h.
|
private |
Definition at line 1145 of file tinyxml2.h.
|
mutableprivate |
Definition at line 1142 of file tinyxml2.h.
|
private |
Definition at line 1144 of file tinyxml2.h.
|
mutableprivate |
Definition at line 1143 of file tinyxml2.h.