1<xsl:stylesheet version="3.0" 2 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 3 xmlns:xs="http://www.w3.org/2001/XMLSchema" 4 exclude-result-prefixes="xs" 5 expand-text="yes"> 6 7 <xsl:variable name="doc-ref" select="'beast.ref'"/> 8 <xsl:variable name="doc-ns" select="'boost::beast'"/> 9 <xsl:variable name="include-private-members" select="false()"/> 10 11 <xsl:template mode="convenience-header" match="@file[contains(., 'boost/beast/core')]" >core.hpp</xsl:template> 12 <xsl:template mode="convenience-header" match="@file[contains(., 'boost/beast/http')]" >http.hpp</xsl:template> 13 <xsl:template mode="convenience-header" match="@file[contains(., 'boost/beast/ssl')]" >ssl.hpp</xsl:template> 14 <xsl:template mode="convenience-header" match="@file[contains(., 'boost/beast/websocket')]">websocket.hpp</xsl:template> 15 <xsl:template mode="convenience-header" match="@file[contains(., 'boost/beast/zlib')]" >zlib.hpp</xsl:template> 16 <xsl:template mode="convenience-header" match="@file"/> 17 18</xsl:stylesheet> 19