Uploaded initial version.
[guivpn] / trunk / vpngui / src / vpn_notify.h
1 /*
2  * This file is part of vpngui
3  *
4  * Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies)
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  * */
20
21 #ifndef VPN_NOTIFY_H
22 #define VPN_NOTIFY_H
23
24 #include <glib-object.h>
25
26 G_BEGIN_DECLS
27
28 #define VPN_TYPE_NOTIFY \
29   (vpn_notify_get_type ())
30 #define VPN_NOTIFY(obj) \
31   (G_TYPE_CHECK_INSTANCE_CAST((obj), VPN_TYPE_NOTIFY, VpnNotify))
32 #define VPN_NOTIFY_CLASS(klass) \
33   (G_TYPE_CHECK_CLASS_CAST((klass), VPN_TYPE_NOTIFY, VpnNotifyClass))
34 #define VPN_IS_NOTIFY(obj) \
35   (G_TYPE_CHECK_INSTANCE_TYPE((obj), VPN_TYPE_NOTIFY))
36 #define VPN_IS_NOTIFY_CLASS(klass) \
37   (G_TYPE_CHECK_CLASS_TYPE((klass), VPN_TYPE_NOTIFY))
38 #define VPN_NOTIFY_GET_CLASS(obj) \
39   (G_TYPE_INSTANCE_GET_CLASS ((obj), VPN_TYPE_NOTIFY, VpnNotifyClass))
40
41 typedef struct _VpnNotify VpnNotify;
42 typedef struct _VpnNotifyClass VpnNotifyClass;
43
44 struct _VpnNotify
45 {
46   GObject parent;
47 };
48
49 struct _VpnNotifyClass
50 {
51   GObjectClass parent;
52 };
53
54 GType vpn_notify_get_type (void);
55
56 G_END_DECLS
57
58 #endif