~ubuntu-branches/ubuntu/precise/evolution/precise

« back to all changes in this revision

Viewing changes to plugins/groupwise-features/camel-gw-listener.h

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-06-24 00:27:53 UTC
  • mfrom: (1.1.80 upstream)
  • Revision ID: james.westby@ubuntu.com-20110624002753-2vh1vjavlya7r103
Tags: 3.1.2-0ubuntu1
* New upstream release 3.1.2.
* debian/control: adjust Build-Depends to match new upstream requirements for
  the new release.
* debian/control: update evolution and evolution-dev Depends to require the
  right versions of e-d-s (>= 3.1, << 3.2), and drop libunique-3.0-dev.
* debian/control,
  debian/evolution.install: remove groupwise-features from the plugin list,
  it's now split out into a separate module.
* debian/patches/03_lpi.patch: refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *
3
 
 * This program is free software; you can redistribute it and/or
4
 
 * modify it under the terms of the GNU Lesser General Public
5
 
 * License as published by the Free Software Foundation; either
6
 
 * version 2 of the License, or (at your option) version 3.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful,
9
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11
 
 * Lesser General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU Lesser General Public
14
 
 * License along with the program; if not, see <http://www.gnu.org/licenses/>
15
 
 *
16
 
 *
17
 
 * Authors:
18
 
 *              Sivaiah Nallagatla <snallagatla@novell.com>
19
 
 *
20
 
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
21
 
 *
22
 
 */
23
 
 
24
 
#ifndef CAMEL_GW_LISTENER_H
25
 
#define CAMEL_GW_LISTENER_H
26
 
 
27
 
#include <libedataserver/e-account-list.h>
28
 
#include<libedataserver/e-source.h>
29
 
#include<libedataserver/e-source-list.h>
30
 
 
31
 
G_BEGIN_DECLS
32
 
 
33
 
#define CAMEL_TYPE_GW_LISTENER            (camel_gw_listener_get_type ())
34
 
#define CAMEL_GW_LISTENER(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), CAMEL_TYPE_GW_LISTENER, CamelGwListener))
35
 
#define CAMEL_GW_LISTENER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), CAMEL_TYPE_GW_LISTENER,  CamelGWListenerClass))
36
 
#define CAMEL_IS_GWLISTENER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CAMEL_TYPE_GW_LISTENER))
37
 
#define CAMEL_IS_GW_LISTENER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), CAMEL_TYPE_GW_LISTENER))
38
 
 
39
 
typedef struct _CamelGwListener CamelGwListener;
40
 
typedef struct _CamelGwListenerClass CamelGwListenerClass;
41
 
typedef struct _CamelGwListenerPrivate CamelGwListenerPrivate;
42
 
 
43
 
struct _CamelGwListener {
44
 
       GObject parent;
45
 
 
46
 
       CamelGwListenerPrivate *priv;
47
 
};
48
 
 
49
 
struct _CamelGwListenerClass {
50
 
       GObjectClass parent_class;
51
 
};
52
 
 
53
 
GType                   camel_gw_listener_get_type (void);
54
 
CamelGwListener *camel_gw_listener_new (void);
55
 
 
56
 
G_END_DECLS
57
 
 
58
 
#endif