~ubuntu-branches/ubuntu/trusty/anjuta/trusty

« back to all changes in this revision

Viewing changes to plugins/project-wizard/templates/gtkapplication/src/application.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2012-02-20 22:38:35 UTC
  • mfrom: (1.1.43)
  • Revision ID: package-import@ubuntu.com-20120220223835-ny223imz62qkk9ns
Tags: 2:3.3.90-0ubuntu1
* New upstream release.
* debian/rules: Watch for unstable releases

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
[+ autogen5 template +]
 
2
[+INCLUDE (string-append "licenses/" (get "License") ".tpl") \+]
2
3
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
3
4
/*
4
5
 * [+NameLower+].h
5
 
 * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
 
6
 * Copyright (C) [+(shell "date +%Y")+] [+Author+] <[+Email+]>
6
7
 * 
7
 
[+CASE (get "License") +]
8
 
[+ == "BSD"  +][+(bsd  (get "Name") (get "Author") " * ")+]
9
 
[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+]
10
 
[+ == "GPL"  +][+(gpl  (get "Name")                " * ")+]
11
 
[+ESAC+] */
 
8
[+INVOKE LICENSE-DESCRIPTION PFX=" * " PROGRAM=(get "Name") OWNER=(get "Author") \+]
 
9
 */
12
10
 
13
11
#ifndef _[+NameCUpper+]_
14
12
#define _[+NameCUpper+]_
26
24
 
27
25
typedef struct _[+NameCClass+]Class [+NameCClass+]Class;
28
26
typedef struct _[+NameCClass+] [+NameCClass+];
 
27
[+IF (=(get "HaveBuilderUI") "1")+]typedef struct _[+NameCClass+]Private [+NameCClass+]Private;[+ENDIF+]
29
28
 
30
29
struct _[+NameCClass+]Class
31
30
{
35
34
struct _[+NameCClass+]
36
35
{
37
36
        GtkApplication parent_instance;
 
37
[+IF (=(get "HaveBuilderUI") "1")+]
 
38
        [+NameCClass+]Private *priv;
 
39
[+ENDIF+]
38
40
};
39
41
 
40
42
GType [+NameCLower+]_get_type (void) G_GNUC_CONST;