Changeset 79737 in vbox
- Timestamp:
- Jul 12, 2019 1:56:01 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/apiwrap-server.xsl
r79049 r79737 80 80 */ 81 81 82 /* *83 * Copyright (C) 2010-201 6Oracle Corporation82 /* 83 * Copyright (C) 2010-2019 Oracle Corporation 84 84 * 85 85 * This file is part of VirtualBox Open Source Edition (OSE), as … … 120 120 121 121 </xsl:text> 122 <xsl:value-of select="concat('class ATL_NO_VTABLE ', substring(@name, 2), 'Wrap :')"/>122 <xsl:value-of select="concat('class ATL_NO_VTABLE ', substring(@name, 2), 'Wrap')"/> 123 123 <xsl:text> 124 public VirtualBoxBase, 125 </xsl:text> 126 <xsl:value-of select="concat(' VBOX_SCRIPTABLE_IMPL(', @name, ')')"/> 127 <xsl:if test="count(exsl:node-set($addinterfaces)/token) > 0"> 128 <xsl:text>,</xsl:text> 129 </xsl:if> 124 : public VirtualBoxBase 125 </xsl:text> 126 <xsl:value-of select="concat(' , VBOX_SCRIPTABLE_IMPL(', @name, ')')"/> 130 127 <xsl:value-of select="$G_sNewLine"/> 131 128 <xsl:for-each select="exsl:node-set($addinterfaces)/token"> 132 <xsl:value-of select="concat(' VBOX_SCRIPTABLE_IMPL(', text(), ')')"/> 133 <xsl:if test="not(position()=last())"> 134 <xsl:text>,</xsl:text> 135 </xsl:if> 129 <xsl:value-of select="concat(' , VBOX_SCRIPTABLE_IMPL(', text(), ')')"/> 136 130 <xsl:value-of select="$G_sNewLine"/> 137 131 </xsl:for-each> … … 1563 1557 </xsl:when> 1564 1558 <xsl:when test="$pmode != 'dtrace-probes'"> 1565 <xsl:value-of select="concat($G_sNewLine, ' // ', $pmode, ' ', $name, ' properties', $G_sNewLine)"/> 1559 <xsl:value-of select="concat($G_sNewLine, ' /** @name ', translate(substring($pmode, 1, 1), $G_lowerCase, $G_upperCase), substring($pmode,2), ' ', $name, ' properties', $G_sNewLine)"/> 1560 <xsl:text> * @{ */ 1561 </xsl:text> 1566 1562 </xsl:when> 1567 1563 </xsl:choose> … … 1615 1611 <xsl:otherwise><xsl:message terminate="yes">Otherwise oops in emitAttributes</xsl:message></xsl:otherwise> 1616 1612 </xsl:choose> 1613 1614 <!-- close doxygen @name --> 1615 <xsl:if test="($pmode != 'code') and ($pmode != 'dtrace-probes')" > 1616 <xsl:text> /** @} */ 1617 </xsl:text> 1618 </xsl:if> 1617 1619 </xsl:template> 1618 1620 … … 2196 2198 <xsl:when test="$pmode='dtrace-probes'"/> 2197 2199 <xsl:otherwise> 2198 <xsl:value-of select="concat($G_sNewLine, ' // ', $pmode, ' ', $name, ' methods', $G_sNewLine)"/> 2200 <xsl:value-of select="concat($G_sNewLine, ' /** @name ', translate(substring($pmode, 1, 1), $G_lowerCase, $G_upperCase), substring($pmode,2), ' ', $name, ' methods', $G_sNewLine)"/> 2201 <xsl:text> * @{ */ 2202 </xsl:text> 2199 2203 </xsl:otherwise> 2200 2204 </xsl:choose> … … 2247 2251 <xsl:otherwise/> 2248 2252 </xsl:choose> 2253 2254 <!-- close doxygen @name --> 2255 <xsl:if test="($pmode != 'code') and ($pmode != 'dtrace-probes')" > 2256 <xsl:text> /** @} */ 2257 </xsl:text> 2258 </xsl:if> 2249 2259 </xsl:template> 2250 2260
Note:
See TracChangeset
for help on using the changeset viewer.