Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / calendar / backends / caldav / e-cal-backend-caldav.h
1 /* Evolution calendar - caldav backend
2  *
3  * Copyright (C) 2005 Novell, Inc.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU General Public
7  * License as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17  *
18  * Author: Christian Kellner <gicmo@gnome.org> 
19  */
20
21 #ifndef E_CAL_BACKEND_CALDAV_H
22 #define E_CAL_BACKEND_CALDAV_H
23
24 #include <libedata-cal/e-cal-backend-sync.h>
25
26 G_BEGIN_DECLS
27
28
29 #define E_TYPE_CAL_BACKEND_CALDAV             (e_cal_backend_caldav_get_type ())
30 #define E_CAL_BACKEND_CALDAV(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_TYPE_CAL_BACKEND_CALDAV, ECalBackendCalDAV))
31 #define E_CAL_BACKEND_CALDAV_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), E_TYPE_CAL_BACKEND_CALDAV, ECalBackendCalDAVClass))
32 #define E_IS_CAL_BACKEND_CALDAV(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TYPE_CAL_BACKEND_CALDAV))
33 #define E_IS_CAL_BACKEND_CALDAV_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), E_TYPE_CAL_BACKEND_CALDAV))
34 #define E_CAL_BACKEND_CALDAV_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), E_TYPE_CAL_BACKEND_CALDAV, ECalBackendCalDAVPrivate))
35
36 typedef struct _ECalBackendCalDAV ECalBackendCalDAV;
37 typedef struct _ECalBackendCalDAVClass ECalBackendCalDAVClass;
38
39 typedef struct _ECalBackendCalDAVPrivate ECalBackendCalDAVPrivate;
40
41 struct _ECalBackendCalDAV {
42            ECalBackendSync backend;
43 };
44
45 struct _ECalBackendCalDAVClass {
46            ECalBackendSyncClass parent_class;
47 };
48
49 GType       e_cal_backend_caldav_get_type      (void);
50
51
52 G_END_DECLS
53
54 #endif /* E_CAL_BACKEND_CALDAV_H */