aboutsummaryrefslogtreecommitdiffstats
path: root/src/Expat.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Expat.hxx')
-rw-r--r--src/Expat.hxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Expat.hxx b/src/Expat.hxx
index 9fcdf61d4..d57a85533 100644
--- a/src/Expat.hxx
+++ b/src/Expat.hxx
@@ -56,6 +56,10 @@ public:
bool Parse(InputStream &is, Error &error);
gcc_pure
+ static const char *GetAttribute(const XML_Char **atts,
+ const char *name);
+
+ gcc_pure
static const char *GetAttributeCase(const XML_Char **atts,
const char *name);
@@ -86,6 +90,12 @@ public:
}
gcc_pure
+ static const char *GetAttribute(const XML_Char **atts,
+ const char *name) {
+ return ExpatParser::GetAttribute(atts, name);
+ }
+
+ gcc_pure
static const char *GetAttributeCase(const XML_Char **atts,
const char *name) {
return ExpatParser::GetAttributeCase(atts, name);