Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / camel / providers / groupwise / camel-groupwise-transport.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* camel-groupwise-transport.h : class for an groupwise transport */
3
4 /* 
5  * Authors: Sivaiah Nallagatla <snallagatla@novell.com>
6  *
7  * Copyright (C) 2004 Novell, Inc.
8  *
9  * This program is free software; you can redistribute it and/or 
10  * modify it under the terms of version 2 of the GNU Lesser General Public 
11  * License as published by the Free Software Foundation.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
21  * USA
22  */
23
24
25 #ifndef CAMEL_GROUPWISE_TRANSPORT_H
26 #define CAMEL_GROUPWISE_TRANSPORT_H 1
27
28 #include <camel/camel-transport.h>
29
30 #define CAMEL_GROUPWISE_TRANSPORT_TYPE     (camel_groupwise_transport_get_type ())
31 #define CAMEL_GROUPWISE_TRANSPORT(obj)     (CAMEL_CHECK_CAST((obj), CAMEL_GROUPWISE_TRANSPORT_TYPE, CamelGroupwiseTransport))
32 #define CAMEL_GROUPWISE_TRANSPORT_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_GROUPWISE_TRANSPORT_TYPE, CamelGroupwiseTransportClass))
33 #define CAMEL_IS_GROUPWISE_TRANSPORT(o)    (CAMEL_CHECK_TYPE((o), CAMEL_GROUPWISE_TRANSPORT_TYPE))
34
35 G_BEGIN_DECLS
36
37 typedef struct {
38         CamelTransport parent_object;
39         gboolean connected ;
40
41 } CamelGroupwiseTransport;
42
43
44 typedef struct {
45         CamelTransportClass parent_class;
46
47 } CamelGroupwiseTransportClass;
48
49
50 /* Standard Camel function */
51 CamelType camel_groupwise_transport_get_type (void);
52
53 G_END_DECLS
54
55 #endif /* CAMEL_GROUPWISE_TRANSPORT_H */