summaryrefslogtreecommitdiffstats
path: root/Source/cmXMLParser.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-02-24 20:43:49 (GMT)
committerBrad King <brad.king@kitware.com>2009-02-24 20:43:49 (GMT)
commitb5db18e72322862883e6d0695e3e0cc5826f39c9 (patch)
tree64ef6bac88f671a80e15dcf695b1b4c130e4d318 /Source/cmXMLParser.h
parentd033f0d2d15ddc84b446da0012b809f6cba1597f (diff)
downloadCMake-b5db18e72322862883e6d0695e3e0cc5826f39c9.zip
CMake-b5db18e72322862883e6d0695e3e0cc5826f39c9.tar.gz
CMake-b5db18e72322862883e6d0695e3e0cc5826f39c9.tar.bz2
ENH: Added cmXMLParser::FindAttribute method
This method will help subclasses look for element attributes in their StartElement methods.
Diffstat (limited to 'Source/cmXMLParser.h')
-rw-r--r--Source/cmXMLParser.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmXMLParser.h b/Source/cmXMLParser.h
index 68def9e..80b0503 100644
--- a/Source/cmXMLParser.h
+++ b/Source/cmXMLParser.h
@@ -105,6 +105,9 @@ protected:
//! Send the given c-style string to the XML parser.
int ParseBuffer(const char* buffer);
+ /** Helps subclasses search for attributes on elements. */
+ static const char* FindAttribute(const char** atts, const char* attribute);
+
//! Callbacks for the expat
friend void cmXMLParserStartElement(void*, const char*, const char**);
friend void cmXMLParserEndElement(void*, const char*);