|
const char * | Name () const |
| The name of the attribute. More...
|
|
local | Name () |
| The name of the attribute. More...
|
|
const char * | Value () const |
| The value of the attribute. More...
|
|
local | Value () |
| The value of the attribute. More...
|
|
const XMLAttribute * | Next () const |
| The next attribute in the list. More...
|
|
int | IntValue () const |
| IntAttribute interprets the attribute as an integer, and returns the value. More...
|
|
unsigned | UnsignedValue () const |
| Query as an unsigned integer. See IntAttribute() More...
|
|
bool | BoolValue () const |
| Query as a boolean. See IntAttribute() More...
|
|
double | DoubleValue () const |
| Query as a double. See IntAttribute() More...
|
|
local | DoubleValue () |
| Query as a double. See IntAttribute() More...
|
|
float | FloatValue () const |
| Query as a float. See IntAttribute() More...
|
|
XMLError | QueryIntValue (int *value) const |
| QueryIntAttribute interprets the attribute as an integer, and returns the value in the provided paremeter. More...
|
|
local | QueryIntValue ( local value) |
| QueryIntAttribute interprets the attribute as an integer, and returns the value in the provided paremeter. More...
|
|
XMLError | QueryUnsignedValue (unsigned int *value) const |
| See QueryIntAttribute. More...
|
|
local | QueryUnsignedValue ( local value) |
| See QueryIntAttribute. More...
|
|
XMLError | QueryBoolValue (bool *value) const |
| See QueryIntAttribute. More...
|
|
XMLError | QueryDoubleValue (double *value) const |
| See QueryIntAttribute. More...
|
|
var | QueryDoubleValue ( var value) |
| See QueryIntAttribute. More...
|
|
local | QueryDoubleValue ( local value) |
| See QueryIntAttribute. More...
|
|
XMLError | QueryFloatValue (float *value) const |
| See QueryIntAttribute. 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...
|
|