blob: a5003542f6ce146e042bd3a9652f6965a39fd368 (
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
|
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "datetime-interface.h"
#include "datetime-service-server.h"
#include "dbus-shared.h"
static void datetime_interface_class_init (DatetimeInterfaceClass *klass);
static void datetime_interface_init (DatetimeInterface *self);
static void datetime_interface_dispose (GObject *object);
static void datetime_interface_finalize (GObject *object);
G_DEFINE_TYPE (DatetimeInterface, datetime_interface, G_TYPE_OBJECT);
static void
datetime_interface_class_init (DatetimeInterfaceClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->dispose = datetime_interface_dispose;
object_class->finalize = datetime_interface_finalize;
dbus_g_object_type_install_info(DATETIME_INTERFACE_TYPE, &dbus_glib__datetime_service_server_object_info);
return;
}
static void
datetime_interface_init (DatetimeInterface *self)
{
DBusGConnection * connection = dbus_g_bus_get(DBUS_BUS_SESSION, NULL);
dbus_g_connection_register_g_object(connection,
SERVICE_OBJ,
G_OBJECT(self));
return;
}
static void
datetime_interface_dispose (GObject *object)
{
G_OBJECT_CLASS (datetime_interface_parent_class)->dispose (object);
return;
}
static void
datetime_interface_finalize (GObject *object)
{
G_OBJECT_CLASS (datetime_interface_parent_class)->finalize (object);
return;
}
|