Merge pull request #822 from ghost/queryattr
Add QueryAttribute for const char**
This commit is contained in:
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user