diff options
Diffstat (limited to 'header-generator.xsl')
-rw-r--r-- | header-generator.xsl | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/header-generator.xsl b/header-generator.xsl index 67f915f2..fc33bc6c 100644 --- a/header-generator.xsl +++ b/header-generator.xsl @@ -177,12 +177,33 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA <xsl:template match="/tp:spec"> /* Generated Header file do not edit */ -/* <xsl:value-of select="tp:title"/> */ -<xsl:if test="tp:version"> + /* - * <xsl:text> version </xsl:text> <xsl:value-of select="tp:version"/> + * <xsl:value-of select="tp:title"/> + * version <xsl:value-of select="tp:version"/> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + * Copyright (C) 2008 - 2009 Novell, Inc. + * Copyright (C) 2009 - 2011 Red Hat, Inc. */ -</xsl:if> + +#ifndef _MODEM_MANAGER_H_ +#define _MODEM_MANAGER_H_ + #define MM_MODEMMANAGER_PATH "/org/freedesktop/ModemManager" #define MM_MODEMMANAGER_SERVICE "org.freedesktop.ModemManager" @@ -232,6 +253,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA **********/ <xsl:apply-templates select="tp:errors"/> +#endif /* _MODEM_MANAGER_H_ */ + <!-- Ensure that the file ends with a newline --> <xsl:text> </xsl:text> |