You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
321 B
12 lines
321 B
15 years ago
|
<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>
|