blob: 0b204ea21243ba5a4e30a5a3052a3d39b452191a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/*
* Copyright (C) 2014 Red Hat, Inc. (www.redhat.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 <http://www.gnu.org/licenses/>.
*
* Authors: Milan Crha <mcrha@redhat.com>
*/
#include "evolution-data-server-config.h"
#include "e-cal-backend-gtasks.h"
#define FACTORY_NAME "gtasks"
typedef ECalBackendFactory ECalBackendGTasksFactory;
typedef ECalBackendFactoryClass ECalBackendGTasksFactoryClass;
static EModule *e_module;
/* Module Entry Points */
void e_module_load (GTypeModule *type_module);
void e_module_unload (GTypeModule *type_module);
/* Forward Declarations */
GType e_cal_backend_gtasks_factory_get_type (void);
G_DEFINE_DYNAMIC_TYPE (
ECalBackendGTasksFactory,
e_cal_backend_gtasks_factory,
E_TYPE_CAL_BACKEND_FACTORY)
static void
e_cal_backend_gtasks_factory_class_init (ECalBackendFactoryClass *class)
{
EBackendFactoryClass *backend_factory_class;
backend_factory_class = E_BACKEND_FACTORY_CLASS (class);
backend_factory_class->e_module = e_module;
backend_factory_class->share_subprocess = TRUE;
class->factory_name = FACTORY_NAME;
class->component_kind = I_CAL_VTODO_COMPONENT;
class->backend_type = E_TYPE_CAL_BACKEND_GTASKS;
}
static void
e_cal_backend_gtasks_factory_class_finalize (ECalBackendFactoryClass *class)
{
}
static void
e_cal_backend_gtasks_factory_init (ECalBackendFactory *factory)
{
}
G_MODULE_EXPORT void
e_module_load (GTypeModule *type_module)
{
e_module = E_MODULE (type_module);
e_cal_backend_gtasks_factory_register_type (type_module);
}
G_MODULE_EXPORT void
e_module_unload (GTypeModule *type_module)
{
e_module = NULL;
}
|