blob: 88309be63b696fc924c29e5926cd5dc0510d48df (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" />
<xsl:template match="/doxygen">
<classes>
<xsl:for-each select="compound[@kind='class']">
<class><xsl:value-of select="name/text()" /></class>
</xsl:for-each>
</classes>
</xsl:template>
</xsl:stylesheet>
|