aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-contact-list.h
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2009-01-07 00:47:19 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-01-07 00:47:19 +0800
commit0004ebaad62474cfa2eb5f5c6bf8f29b6e6e4070 (patch)
treeeb869a9fcde213fa89dfd2e5cbaff1eb6360b816 /libempathy/empathy-contact-list.h
parentf154530d5eb65cbe2f1af899e0b30d7b665f7575 (diff)
downloadgsoc2013-empathy-0004ebaad62474cfa2eb5f5c6bf8f29b6e6e4070.tar
gsoc2013-empathy-0004ebaad62474cfa2eb5f5c6bf8f29b6e6e4070.tar.gz
gsoc2013-empathy-0004ebaad62474cfa2eb5f5c6bf8f29b6e6e4070.tar.bz2
gsoc2013-empathy-0004ebaad62474cfa2eb5f5c6bf8f29b6e6e4070.tar.lz
gsoc2013-empathy-0004ebaad62474cfa2eb5f5c6bf8f29b6e6e4070.tar.xz
gsoc2013-empathy-0004ebaad62474cfa2eb5f5c6bf8f29b6e6e4070.tar.zst
gsoc2013-empathy-0004ebaad62474cfa2eb5f5c6bf8f29b6e6e4070.zip
Add an EmpathyContactMonitor object to monitor changes in the contact
list. svn path=/trunk/; revision=2050
Diffstat (limited to 'libempathy/empathy-contact-list.h')
-rw-r--r--libempathy/empathy-contact-list.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libempathy/empathy-contact-list.h b/libempathy/empathy-contact-list.h
index 0b13031ba..3e90e8cac 100644
--- a/libempathy/empathy-contact-list.h
+++ b/libempathy/empathy-contact-list.h
@@ -24,6 +24,7 @@
#include <glib-object.h>
+#include "empathy-types.h"
#include "empathy-contact.h"
#include "empathy-tp-group.h"
@@ -34,7 +35,6 @@ G_BEGIN_DECLS
#define EMPATHY_IS_CONTACT_LIST(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_CONTACT_LIST))
#define EMPATHY_CONTACT_LIST_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), EMPATHY_TYPE_CONTACT_LIST, EmpathyContactListIface))
-typedef struct _EmpathyContactList EmpathyContactList;
typedef struct _EmpathyContactListIface EmpathyContactListIface;
struct _EmpathyContactListIface {
@@ -63,6 +63,8 @@ struct _EmpathyContactListIface {
const gchar *new_group);
void (*remove_group) (EmpathyContactList *list,
const gchar *group);
+ EmpathyContactMonitor *
+ (*get_monitor) (EmpathyContactList *list);
};
GType empathy_contact_list_get_type (void) G_GNUC_CONST;
@@ -88,6 +90,8 @@ void empathy_contact_list_rename_group (EmpathyContactList *list,
const gchar *new_group);
void empathy_contact_list_remove_group (EmpathyContactList *list,
const gchar *group);
+EmpathyContactMonitor *
+ empathy_contact_list_get_monitor (EmpathyContactList *list);
G_END_DECLS