- Timestamp:
- Jan 7, 2012 2:04:33 AM (13 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/comimpl.xsl
r35913 r39714 14 14 Further extension to other interfaces is possible and anticipated. 15 15 16 Copyright (C) 2010 Oracle Corporation16 Copyright (C) 2010-2012 Oracle Corporation 17 17 18 18 This file is part of VirtualBox Open Source Edition (OSE), as … … 38 38 <xsl:template name="fileheader"> 39 39 <xsl:param name="name" /> 40 <xsl:text>/** 41 * Copyright (C) 2010 Oracle Corporation 42 * 43 * This file is part of VirtualBox Open Source Edition (OSE), as 44 * available from http://www.virtualbox.org. This file is free software; 45 * you can redistribute it and/or modify it under the terms of the GNU 46 * General Public License (GPL) as published by the Free Software 47 * Foundation, in version 2 as it comes in the "COPYING" file of the 48 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the 49 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 50 * 51 </xsl:text> 52 <xsl:value-of select="concat(' * ',$name)"/> 53 <xsl:text> 54 * 40 <xsl:text>/** @file </xsl:text> 41 <xsl:value-of select="$name"/> 42 <xsl:text> 55 43 * DO NOT EDIT! This is a generated file. 56 44 * Generated from: src/VBox/Main/idl/VirtualBox.xidl (VirtualBox's interface definitions in XML) 57 * Generator: src/VBox/Main/idl/autogen.xsl 45 * Generator: src/VBox/Main/idl/comimpl.xsl 46 */ 47 48 /* 49 * Copyright (C) 2010-2012 Oracle Corporation 50 * 51 * This file is part of VirtualBox Open Source Edition (OSE), as 52 * available from http://www.virtualbox.org. This file is free software; 53 * you can redistribute it and/or modify it under the terms of the GNU 54 * General Public License (GPL) as published by the Free Software 55 * Foundation, in version 2 as it comes in the "COPYING" file of the 56 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the 57 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 58 58 */ 59 59 … … 743 743 <xsl:value-of select="//interface[@name=$name]/@extends" /> 744 744 </xsl:variable> 745 745 746 746 <xsl:choose> 747 747 <xsl:when test="$extends='IEvent'"> … … 771 771 <xsl:with-param name="mod" select="@mod" /> 772 772 </xsl:call-template> 773 </xsl:variable> 773 </xsl:variable> 774 774 <xsl:value-of select="concat(', ',$aTypeName)"/> 775 775 </xsl:for-each> … … 841 841 <xsl:value-of select=" ') { '"/> 842 842 843 <xsl:value-of select=" ' VBoxEventDesc evDesc; '"/>844 <xsl:value-of select="concat(' evDesc.init(aSource, VBoxEventType_',$evid)"/>843 <xsl:value-of select=" ' VBoxEventDesc evDesc; '"/> 844 <xsl:value-of select="concat(' evDesc.init(aSource, VBoxEventType_',$evid)"/> 845 845 <xsl:call-template name="genFactParams"> 846 846 <xsl:with-param name="name" select="$ifname" /> 847 847 </xsl:call-template> 848 848 <xsl:value-of select="'); '"/> 849 <xsl:value-of select=" ' evDesc.fire(/* do not wait for delivery */ 0); '"/>849 <xsl:value-of select=" ' evDesc.fire(/* do not wait for delivery */ 0); '"/> 850 850 <xsl:value-of select=" '} '"/> 851 851 </xsl:for-each> -
trunk/src/VBox/Main/include/EventImpl.h
r35638 r39714 1 /* $Id$ */ 1 2 /** @file 2 *3 3 * VirtualBox COM IEvent implementation 4 4 */ 5 5 6 6 /* 7 * Copyright (C) 2010 Oracle Corporation7 * Copyright (C) 2010-2012 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/src/VBox/Main/src-all/EventImpl.cpp
r39713 r39714 5 5 6 6 /* 7 * Copyright (C) 2010 Oracle Corporation7 * Copyright (C) 2010-2012 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as
Note:
See TracChangeset
for help on using the changeset viewer.