Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / calendar / backends / file / e-cal-backend-file-todos.h
1 /* Evolution calendar - iCalendar file backend
2  *
3  * Copyright (C) 2000 Ximian, Inc.
4  * Copyright (C) 2000 Ximian, Inc.
5  *
6  * Author: Federico Mena-Quintero <federico@ximian.com>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of version 2 of the GNU Lesser General Public
10  * License as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  */
21
22 #ifndef E_CAL_BACKEND_FILE_TODOS_H
23 #define E_CAL_BACKEND_FILE_TODOS_H
24
25 #include "e-cal-backend-file.h"
26
27 G_BEGIN_DECLS
28
29 \f
30
31 #define E_TYPE_CAL_BACKEND_FILE_TODOS            (e_cal_backend_file_todos_get_type ())
32 #define E_CAL_BACKEND_FILE_TODOS(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_TYPE_CAL_BACKEND_FILE_TODOS,             \
33                                           ECalBackendFileTodos))
34 #define E_CAL_BACKEND_FILE_TODOS_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), E_TYPE_CAL_BACKEND_FILE_TODOS,      \
35                                           ECalBackendFileTodosClass))
36 #define E_IS_CAL_BACKEND_FILE_TODOS(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TYPE_CAL_BACKEND_FILE_TODOS))
37 #define E_IS_CAL_BACKEND_FILE_TODOS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), E_TYPE_CAL_BACKEND_FILE_TODOS))
38
39 typedef struct _ECalBackendFileTodos ECalBackendFileTodos;
40 typedef struct _ECalBackendFileTodosClass ECalBackendFileTodosClass;
41
42 typedef struct _ECalBackendFileTodosPrivate ECalBackendFileTodosPrivate;
43
44 struct _ECalBackendFileTodos {
45         ECalBackendFile backend;
46
47         /* Private data */
48         ECalBackendFileTodosPrivate *priv;
49 };
50
51 struct _ECalBackendFileTodosClass {
52         ECalBackendFileClass parent_class;
53 };
54
55 GType e_cal_backend_file_todos_get_type (void);
56
57 \f
58
59 G_END_DECLS
60
61 #endif