blob: 0a0eab179255815303598c8d41d595e3a19bd422 (
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
|
#include "server.h"
#include "dbus-indicate-server.h"
/* Signals */
enum {
INDICATOR_ADDED,
INDICATOR_REMOVED,
INDICATOR_MODIFIED,
LAST_SIGNAL
};
static guint signals[LAST_SIGNAL] = { 0 };
G_DEFINE_TYPE (IndicateServer, indicate_server, G_TYPE_OBJECT);
/* Prototypes */
static void indicate_server_finalize (GObject * obj);
/* Code */
static void
indicate_server_class_init (IndicateServerClass * class)
{
GObjectClass * gobj;
gobj = G_OBJECT_CLASS(class);
gobj->finalize = indicate_server_finalize;
return;
}
static void
indicate_server_init (IndicateServer * server)
{
return;
}
static void
indicate_server_finalize (GObject * obj)
{
return;
}
|