Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / calendar / backends / file / e-cal-backend-file-journal.h
1 /* Evolution calendar - iCalendar file backend
2  *
3  * Copyright (C) 2005 Novell, Inc.
4  *
5  * Author: Rodrigo Moya <rodrigo@novell.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of version 2 of the GNU Lesser General Public
9  * License as published by the Free Software Foundation.
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
14  * GNU Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19  */
20
21 #ifndef E_CAL_BACKEND_FILE_JOURNAL_H
22 #define E_CAL_BACKEND_FILE_JOURNAL_H
23
24 #include "e-cal-backend-file.h"
25
26 #define E_TYPE_CAL_BACKEND_FILE_JOURNAL            (e_cal_backend_file_journal_get_type ())
27 #define E_CAL_BACKEND_FILE_JOURNAL(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_TYPE_CAL_BACKEND_FILE_JOURNAL,         \
28                                           ECalBackendFileJournal))
29 #define E_CAL_BACKEND_FILE_JOURNAL_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), E_TYPE_CAL_BACKEND_FILE_JOURNAL,  \
30                                           ECalBackendFileJournalClass))
31 #define E_IS_CAL_BACKEND_FILE_JOURNAL(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TYPE_CAL_BACKEND_FILE_JOURNAL))
32 #define E_IS_CAL_BACKEND_FILE_JOURNAL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), E_TYPE_CAL_BACKEND_FILE_JOURNAL))
33
34 typedef struct _ECalBackendFileJournal ECalBackendFileJournal;
35 typedef struct _ECalBackendFileJournalClass ECalBackendFileJournalClass;
36
37 typedef struct _ECalBackendFileJournalPrivate ECalBackendFileJournalPrivate;
38
39 struct _ECalBackendFileJournal {
40         ECalBackendFile backend;
41
42         /* Private data */
43         ECalBackendFileJournalPrivate *priv;
44 };
45
46 struct _ECalBackendFileJournalClass {
47         ECalBackendFileClass parent_class;
48 };
49
50 GType e_cal_backend_file_journal_get_type (void);
51
52 #endif