Changeset 53883 in vbox for trunk/src/VBox/Main/idl
- Timestamp:
- Jan 21, 2015 2:28:33 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/apiwrap-server.xsl
r53882 r53883 51 51 templates for file separation 52 52 - - - - - - - - - - - - - - - - - - - - - - --> 53 54 <xsl:template match="interface" mode="listfile">55 <xsl:param name="file"/>56 57 <xsl:value-of select="concat('	', $file, ' \', $G_sNewLine)"/>58 </xsl:template>59 53 60 54 <xsl:template match="interface" mode="startfile"> … … 551 545 552 546 <xsl:when test="$generating = 'filelist'"> 553 <!-- Just output the name of the header and source filenames for this interface. --> 554 <xsl:apply-templates select="$iface" mode="listfile"> 555 <xsl:with-param name="file" select="concat(substring(@name, 2), 'Wrap.h')"/> 556 </xsl:apply-templates> 557 <xsl:apply-templates select="$iface" mode="listfile"> 558 <xsl:with-param name="file" select="concat(substring(@name, 2), 'Wrap.cpp')"/> 559 </xsl:apply-templates> 547 <xsl:value-of select="concat('	', substring(@name, 2), 'Wrap.h \', $G_sNewLine)"/> 548 <xsl:value-of select="concat('	', substring(@name, 2), 'Wrap.cpp \', $G_sNewLine)"/> 560 549 </xsl:when> 561 550 </xsl:choose>
Note:
See TracChangeset
for help on using the changeset viewer.