/* Evolution calendar - iCalendar file backend * * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) * * This library is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library. If not, see . * * Authors: Federico Mena-Quintero * Rodrigo Moya */ #include "evolution-data-server-config.h" #include "e-cal-backend-file-events.h" G_DEFINE_TYPE ( ECalBackendFileEvents, e_cal_backend_file_events, E_TYPE_CAL_BACKEND_FILE) static void e_cal_backend_file_events_class_init (ECalBackendFileEventsClass *class) { } static void e_cal_backend_file_events_init (ECalBackendFileEvents *cbfile) { e_cal_backend_file_set_file_name ( E_CAL_BACKEND_FILE (cbfile), "calendar.ics"); }