~ubuntu-branches/ubuntu/saucy/gnomescan/saucy

« back to all changes in this revision

Viewing changes to src/flegita-types.h.tpl

  • Committer: Bazaar Package Importer
  • Author(s): Devid Antonio Filoni
  • Date: 2009-06-29 21:59:52 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090629215952-pkuzs5p6j0zewmvp
Tags: 0.6.2-0ubuntu1
* New upstream release 0.6.2 (0.7.1 seems to crash and still doesn't have
  all 0.6.2 features).
* Fix debhelper-but-no-misc-depends lintian warnings.
* Fix substvar-source-version-is-deprecated lintian warnings.
* Bump Standards-Version to 3.8.2.
* Fix binary-control-field-duplicates-source lintian infos.
* Fix duplicate-short-description lintian infos.
* debian/control: add libgegl-0.0-dev (>= 0.0.21) to Build-Depends field.
* Don't provide libgnomescanui* packages, upstream doesn't ship
  libgnomescanui files anymore.
* Update debian/watch file.
* debian/rules: do not include simple-patchsys.mk.
* debian/control: adjust dependencies.
* debian/control: add libglade2-dev (>= 2.6) to Build-Depends field.
* Update debian/copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-*- c -*-*/
 
2
/*** BEGIN file-header ***/
 
3
/* Gnome Scan - Scan as easy as you print
 
4
 * Copyright © 2007  Étienne Bersac <bersace@gnome.org>
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU Lesser General Public
 
8
 * License as published by the Free Software Foundation; either
 
9
 * version 2.1 of the License, or (at your option) any later version.
 
10
 * 
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR  A PARTICULAR PURPOSE.  See the GNU
 
14
 * Lesser General Public License for more details.
 
15
 * 
 
16
 * You should have received a copy of the GNU Lesser General Public
 
17
 * License along with main.c; if not, write to
 
18
 *
 
19
 *      the Free Software Foundation, Inc.
 
20
 *      51 Franklin Street, Fifth Floor
 
21
 *      Boston, MA 02110-1301, USA
 
22
 */
 
23
 
 
24
#ifndef FLEGITA_TYPES_H
 
25
#define FLEGITA_TYPES_H
 
26
 
 
27
#include <glib-object.h>
 
28
 
 
29
/*** END file-header ***/
 
30
 
 
31
G_BEGIN_DECLS
 
32
 
 
33
 
 
34
/*** BEGIN file-production  ***/
 
35
/* Enumerations from "@filename@" */
 
36
/*** END file-production ***/
 
37
 
 
38
/*** BEGIN enumeration-production  ***/
 
39
#define FLEGITA_TYPE_@ENUMSHORT@        (@enum_name@_get_type ())
 
40
GType   @enum_name@_get_type (void)     G_GNUC_CONST;
 
41
 
 
42
/*** END enumeration-production ***/
 
43
 
 
44
/*** BEGIN file-tail ***/
 
45
 
 
46
G_END_DECLS
 
47
 
 
48
#endif
 
49
/*** END file-tail ***/
 
50