aboutsummaryrefslogtreecommitdiff
path: root/src/session-dbus.h
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-03-12 13:58:39 -0600
committerTed Gould <ted@gould.cx>2010-03-12 13:58:39 -0600
commit931ee90269a965820091d1397e4f5ebf123720a7 (patch)
treee09c9073deba052592df64d5c03f30ecfd5e40ba /src/session-dbus.h
parenteed04dff5181b860c8c86281e94018f8228ddc72 (diff)
downloadayatana-indicator-session-931ee90269a965820091d1397e4f5ebf123720a7.tar.gz
ayatana-indicator-session-931ee90269a965820091d1397e4f5ebf123720a7.tar.bz2
ayatana-indicator-session-931ee90269a965820091d1397e4f5ebf123720a7.zip
Adding in base objects
Diffstat (limited to 'src/session-dbus.h')
-rw-r--r--src/session-dbus.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/session-dbus.h b/src/session-dbus.h
new file mode 100644
index 0000000..be57df7
--- /dev/null
+++ b/src/session-dbus.h
@@ -0,0 +1,31 @@
+#ifndef __SESSION_DBUS_H__
+#define __SESSION_DBUS_H__
+
+#include <glib.h>
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+#define SESSION_DBUS_TYPE (session_dbus_get_type ())
+#define SESSION_DBUS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SESSION_DBUS_TYPE, SessionDbus))
+#define SESSION_DBUS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SESSION_DBUS_TYPE, SessionDbusClass))
+#define IS_SESSION_DBUS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SESSION_DBUS_TYPE))
+#define IS_SESSION_DBUS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SESSION_DBUS_TYPE))
+#define SESSION_DBUS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SESSION_DBUS_TYPE, SessionDbusClass))
+
+typedef struct _SessionDbus SessionDbus;
+typedef struct _SessionDbusClass SessionDbusClass;
+
+struct _SessionDbusClass {
+ GObjectClass parent_class;
+};
+
+struct _SessionDbus {
+ GObject parent;
+};
+
+GType session_dbus_get_type (void);
+
+G_END_DECLS
+
+#endif