1 /* Evolution calendar - iCalendar file backend for tasks
2  *
3  * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
4  *
5  * This library is free software: you can redistribute it and/or modify it
6  * under the terms of the GNU Lesser General Public License as published by
7  * the Free Software Foundation.
8  *
9  * This library is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
12  * for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with this library. If not, see <http://www.gnu.org/licenses/>.
16  *
17  * Authors: Federico Mena-Quintero <federico@ximian.com>
18  *          Rodrigo Moya <rodrigo@ximian.com>
19  */
20 
21 #include "evolution-data-server-config.h"
22 
23 #include "e-cal-backend-file-todos.h"
24 
G_DEFINE_TYPE(ECalBackendFileTodos,e_cal_backend_file_todos,E_TYPE_CAL_BACKEND_FILE)25 G_DEFINE_TYPE (
26 	ECalBackendFileTodos,
27 	e_cal_backend_file_todos,
28 	E_TYPE_CAL_BACKEND_FILE)
29 
30 static void
31 e_cal_backend_file_todos_class_init (ECalBackendFileTodosClass *class)
32 {
33 }
34 
35 static void
e_cal_backend_file_todos_init(ECalBackendFileTodos * cbfile)36 e_cal_backend_file_todos_init (ECalBackendFileTodos *cbfile)
37 {
38 	e_cal_backend_file_set_file_name (
39 		E_CAL_BACKEND_FILE (cbfile), "tasks.ics");
40 }
41 
42