Add QueryAttribute for const char**

This commit is contained in:
justnope
2020-06-15 00:47:48 +02:00
parent fc89670749
commit 5ee20feaf0

View File

@@ -1456,6 +1456,10 @@ public:
return QueryFloatAttribute( name, value );
}
XMLError QueryAttribute(const char* name, const char** value) const {
return QueryStringAttribute(name, value);
}
/// Sets the named attribute to value.
void SetAttribute( const char* name, const char* value ) {
XMLAttribute* a = FindOrCreateAttribute( name );