mirror of
https://github.com/boostorg/circular_buffer.git
synced 2026-01-30 07:42:32 +00:00
69 lines
2.7 KiB
HTML
69 lines
2.7 KiB
HTML
<?xml version='1.0' encoding='iso-8859-1'?>
|
|
<!--
|
|
XSL transformation from the XML files generated by Doxygen into XHTML source
|
|
code documentation of the circular_buffer.
|
|
|
|
Copyright (c) 2006 Jan Gaspar
|
|
|
|
Use, modification, and distribution is subject to the Boost Software
|
|
License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
http://www.boost.org/LICENSE_1_0.txt)
|
|
-->
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
|
|
<xsl:import href="doxygen2html.xslt"/>
|
|
|
|
<xsl:output method="xml" version="1.0" encoding="iso-8859-1" indent="yes" media-type="text/xml"/>
|
|
|
|
<xsl:variable name="link-prefix" select="''"/>
|
|
<xsl:variable name="standalone-functions" select="document(concat($xmldir, '/namespaceboost.xml'))/doxygen/compounddef/sectiondef[@kind='func']"/>
|
|
|
|
<xsl:template name="reference">
|
|
<xsl:value-of select="concat('#', @refid)"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="template-parameters">
|
|
<xsl:apply-templates select="templateparamlist/param" mode="synopsis"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="public-types">
|
|
<xsl:apply-templates select="sectiondef[@kind='public-type']/memberdef" mode="synopsis"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="constructors">
|
|
<xsl:apply-templates select="sectiondef[@kind='public-func']/memberdef[type = '']" mode="synopsis"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="member-functions">
|
|
<xsl:apply-templates select="sectiondef[@kind='public-func']/memberdef[type != '']" mode="synopsis"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="standalone-functions">
|
|
<xsl:apply-templates select="$standalone-functions/memberdef[contains(argsstring, 'circular_buffer<')]" mode="synopsis">
|
|
<xsl:with-param name="indent" select="''"/>
|
|
</xsl:apply-templates>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="template-parameters-details">
|
|
<xsl:apply-templates select="detaileddescription//parameterlist[@kind='param']/parameteritem" mode="description"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="public-types-details">
|
|
<xsl:apply-templates select="sectiondef[@kind='public-type']/memberdef" mode="description"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="constructors-details">
|
|
<xsl:apply-templates select="sectiondef[@kind='public-func']/memberdef[type = '']" mode="description"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="member-functions-details">
|
|
<xsl:apply-templates select="sectiondef[@kind='public-func']/memberdef[type != '']" mode="description"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="standalone-functions-details">
|
|
<xsl:apply-templates select="$standalone-functions/memberdef[contains(argsstring, 'circular_buffer<')]" mode="description"/>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|