diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-03-03 09:26:06 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-03-03 09:26:06 -0500 |
commit | 90f3d2ff9fe7297dae0bdcee9c441e53177a0fb7 (patch) | |
tree | 3f89437e059b33dc2c78766e17c21e62fb1489e6 /include/tinyxml2.h | |
parent | e879b257b9512816f2ff579a7444fe600a74ed91 (diff) |
efficiency stuffs
Diffstat (limited to 'include/tinyxml2.h')
-rwxr-xr-x | include/tinyxml2.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/tinyxml2.h b/include/tinyxml2.h index fb7464a..4282642 100755 --- a/include/tinyxml2.h +++ b/include/tinyxml2.h @@ -38,6 +38,8 @@ distribution. # include <cstring>
#endif
+#include <string>
+
/*
TODO: intern strings instead of allocation.
*/
@@ -1187,6 +1189,11 @@ public: */
const char* Attribute( const char* name, const char* value=0 ) const;
+ /** Functions the same as Attribute(), but returns the result
+ as a std::string.
+ */
+ std::string StrAttribute( const char* name, const char* value=0 ) const;
+
/** Given an attribute name, IntAttribute() returns the value
of the attribute interpreted as an integer. 0 will be
returned if there is an error. For a method with error
|