aboutsummaryrefslogtreecommitdiffstats
path: root/ubuntu-online-accounts/mc-plugin/empathy-webcredentials-monitor.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-09-05 15:44:45 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-09-07 15:14:12 +0800
commitbe4231bfd2bd06d23a2ddf9c5910444eb2541f5d (patch)
treecc744544e410320271ec53ea61484826f8c4dfd4 /ubuntu-online-accounts/mc-plugin/empathy-webcredentials-monitor.h
parentfebd3c5c52a1bc275dea77d86b3bab20594ad4ec (diff)
downloadgsoc2013-empathy-be4231bfd2bd06d23a2ddf9c5910444eb2541f5d.tar
gsoc2013-empathy-be4231bfd2bd06d23a2ddf9c5910444eb2541f5d.tar.gz
gsoc2013-empathy-be4231bfd2bd06d23a2ddf9c5910444eb2541f5d.tar.bz2
gsoc2013-empathy-be4231bfd2bd06d23a2ddf9c5910444eb2541f5d.tar.lz
gsoc2013-empathy-be4231bfd2bd06d23a2ddf9c5910444eb2541f5d.tar.xz
gsoc2013-empathy-be4231bfd2bd06d23a2ddf9c5910444eb2541f5d.tar.zst
gsoc2013-empathy-be4231bfd2bd06d23a2ddf9c5910444eb2541f5d.zip
add empathy-webcredentials-monitor
Just the skeleton so far. https://bugzilla.gnome.org/show_bug.cgi?id=683409
Diffstat (limited to 'ubuntu-online-accounts/mc-plugin/empathy-webcredentials-monitor.h')
-rw-r--r--ubuntu-online-accounts/mc-plugin/empathy-webcredentials-monitor.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/ubuntu-online-accounts/mc-plugin/empathy-webcredentials-monitor.h b/ubuntu-online-accounts/mc-plugin/empathy-webcredentials-monitor.h
new file mode 100644
index 000000000..540a2bea7
--- /dev/null
+++ b/ubuntu-online-accounts/mc-plugin/empathy-webcredentials-monitor.h
@@ -0,0 +1,53 @@
+#ifndef __EMPATHY_WEBCREDENTIALS_MONITOR_H__
+#define __EMPATHY_WEBCREDENTIALS_MONITOR_H__
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+typedef struct _EmpathyWebcredentialsMonitor EmpathyWebcredentialsMonitor;
+typedef struct _EmpathyWebcredentialsMonitorClass EmpathyWebcredentialsMonitorClass;
+typedef struct _EmpathyWebcredentialsMonitorPriv EmpathyWebcredentialsMonitorPriv;
+
+struct _EmpathyWebcredentialsMonitorClass
+{
+ /*<private>*/
+ GObjectClass parent_class;
+};
+
+struct _EmpathyWebcredentialsMonitor
+{
+ /*<private>*/
+ GObject parent;
+ EmpathyWebcredentialsMonitorPriv *priv;
+};
+
+GType empathy_webcredentials_monitor_get_type (void);
+
+/* TYPE MACROS */
+#define EMPATHY_TYPE_WEBCREDENTIALS_MONITOR \
+ (empathy_webcredentials_monitor_get_type ())
+#define EMPATHY_WEBCREDENTIALS_MONITOR(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj), \
+ EMPATHY_TYPE_WEBCREDENTIALS_MONITOR, \
+ EmpathyWebcredentialsMonitor))
+#define EMPATHY_WEBCREDENTIALS_MONITOR_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass), \
+ EMPATHY_TYPE_WEBCREDENTIALS_MONITOR, \
+ EmpathyWebcredentialsMonitorClass))
+#define EMPATHY_IS_WEBCREDENTIALS_MONITOR(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
+ EMPATHY_TYPE_WEBCREDENTIALS_MONITOR))
+#define EMPATHY_IS_WEBCREDENTIALS_MONITOR_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass), \
+ EMPATHY_TYPE_WEBCREDENTIALS_MONITOR))
+#define EMPATHY_WEBCREDENTIALS_MONITOR_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), \
+ EMPATHY_TYPE_WEBCREDENTIALS_MONITOR, \
+ EmpathyWebcredentialsMonitorClass))
+
+EmpathyWebcredentialsMonitor * empathy_webcredentials_monitor_new (void);
+
+G_END_DECLS
+
+#endif /* #ifndef __EMPATHY_WEBCREDENTIALS_MONITOR_H__*/