/* * e-source-task-list.c * * 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 . * */ /** * SECTION: e-source-task-list * @include: libedataserver/libedataserver.h * @short_description: #ESource extension for a task list * * The #ESourceCalendar extension identifies the #ESource as a task list. * * Access the extension as follows: * * |[ * #include * * ESourceCalendar *extension; * * extension = e_source_get_extension (source, E_SOURCE_EXTENSION_TASK_LIST); * ]| **/ #include "e-source-task-list.h" #include G_DEFINE_TYPE ( ESourceTaskList, e_source_task_list, E_TYPE_SOURCE_SELECTABLE) static void e_source_task_list_class_init (ESourceTaskListClass *class) { ESourceExtensionClass *extension_class; extension_class = E_SOURCE_EXTENSION_CLASS (class); extension_class->name = E_SOURCE_EXTENSION_TASK_LIST; } static void e_source_task_list_init (ESourceTaskList *extension) { }