TinyXML-2  1.0.5
 All Classes Functions
Public Member Functions
tinyxml2::XMLAttribute Class Reference

#include <tinyxml2.h>

List of all members.

Public Member Functions

const char * Name () const
 The name of the attribute.
const char * Value () const
 The value of the attribute.
const XMLAttributeNext () const
 The next attribute in the list.
int IntValue () const
unsigned UnsignedValue () const
 Query as an unsigned integer. See IntAttribute()
bool BoolValue () const
 Query as a boolean. See IntAttribute()
double DoubleValue () const
 Query as a double. See IntAttribute()
float FloatValue () const
 Query as a float. See IntAttribute()
int QueryIntValue (int *value) const
int QueryUnsignedValue (unsigned int *value) const
 See QueryIntAttribute.
int QueryBoolValue (bool *value) const
 See QueryIntAttribute.
int QueryDoubleValue (double *value) const
 See QueryIntAttribute.
int QueryFloatValue (float *value) const
 See QueryIntAttribute.
void SetAttribute (const char *value)
 Set the attribute to a string value.
void SetAttribute (int value)
 Set the attribute to value.
void SetAttribute (unsigned value)
 Set the attribute to value.
void SetAttribute (bool value)
 Set the attribute to value.
void SetAttribute (double value)
 Set the attribute to value.
void SetAttribute (float value)
 Set the attribute to value.

Detailed Description

An attribute is a name-value pair. Elements have an arbitrary number of attributes, each with a unique name.

Note:
The attributes are not XMLNodes. You may only query the Next() attribute in a list.

Member Function Documentation

int tinyxml2::XMLAttribute::IntValue ( ) const [inline]

IntAttribute 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 QueryIntAttribute() if you need error checking.

int tinyxml2::XMLAttribute::QueryIntValue ( int *  value) const

QueryIntAttribute interprets the attribute as an integer, and returns the value in the provided paremeter. The function will return XML_NO_ERROR on success, and XML_WRONG_ATTRIBUTE_TYPE if the conversion is not successful.


The documentation for this class was generated from the following file: