diff options
Diffstat (limited to 'telepathy-glib/handle-set.c')
-rw-r--r-- | telepathy-glib/handle-set.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/telepathy-glib/handle-set.c b/telepathy-glib/handle-set.c index 7a1e74946..8839d5c30 100644 --- a/telepathy-glib/handle-set.c +++ b/telepathy-glib/handle-set.c @@ -29,6 +29,12 @@ #include <telepathy-glib/intset.h> +/** + * TpHandleSet: + * + * A set of handles. This is similar to a #TpIntSet (and implemented using + * one), but adding a handle to the set also references it. + */ struct _TpHandleSet { TpHandleRepoIface *repo; @@ -36,6 +42,30 @@ struct _TpHandleSet }; /** + * TP_TYPE_HANDLE_SET: + * + * The boxed type of a #TpHandleSet. + * + * Since: 0.11.UNRELEASED + */ + +GType +tp_handle_set_get_type (void) +{ + static GType type = 0; + + if (G_UNLIKELY (type == 0)) + { + type = g_boxed_type_register_static ( + g_intern_static_string ("TpHandleSet"), + (GBoxedCopyFunc) tp_handle_set_copy, + (GBoxedFreeFunc) tp_handle_set_destroy); + } + + return type; +} + +/** * tp_handle_set_new: * @repo: #TpHandleRepoIface that holds the handles to be reffed by this set * |