From 98ecf620f7de377dc8ae9ad7fbd1e3b24477e138 Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:11:56 +0200 Subject: 3.17 --- shared/tinyxml/docs/classTiXmlElement.html | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'shared/tinyxml/docs/classTiXmlElement.html') diff --git a/shared/tinyxml/docs/classTiXmlElement.html b/shared/tinyxml/docs/classTiXmlElement.html index ac1b3d7a..4d6a5e93 100644 --- a/shared/tinyxml/docs/classTiXmlElement.html +++ b/shared/tinyxml/docs/classTiXmlElement.html @@ -61,6 +61,11 @@ const char *  Given an attribute name, Attribute() returns the value for the attribute of that name, or null if none exists.
int QueryIntAttribute (const char *name, int *_value) const  QueryIntAttribute examines the attribute - it is an alternative to the Attribute() method with richer error checking.
+ +int QueryUnsignedAttribute (const char *name, unsigned *_value) const + QueryUnsignedAttribute examines the attribute - see QueryIntAttribute().
+int QueryBoolAttribute (const char *name, bool *_value) const + QueryBoolAttribute examines the attribute - see QueryIntAttribute().
int QueryDoubleAttribute (const char *name, double *_value) const  QueryDoubleAttribute examines the attribute - see QueryIntAttribute().
@@ -242,6 +247,36 @@ virtual bool Implements TiXmlBase.

+ + + +
+
+ + + + + + + + + + + + + + + + + + +
int TiXmlElement::QueryBoolAttribute (const char *  name,
bool *  _value 
) const
+
+
+ +

QueryBoolAttribute examines the attribute - see QueryIntAttribute().

+

Note that '1', 'true', or 'yes' are considered true, while '0', 'false' and 'no' are considered false.

+
-- cgit