summaryrefslogtreecommitdiff
path: root/telepathy-glib/capabilities.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-04-13 10:07:38 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-04-14 14:32:15 +0200
commit1c6fbe2f2a095af5e740a2b607f9569944c9f1c7 (patch)
treea9216ce66e2369ba6c93ab111603e75433750e28 /telepathy-glib/capabilities.h
parentc0af2cf41087521ca910452ab764e664daae6dcc (diff)
downloadtelepathy-glib-1c6fbe2f2a095af5e740a2b607f9569944c9f1c7.tar.gz
Add TpCapabilities representing contact and connection capabilities (fdo #27511)
Diffstat (limited to 'telepathy-glib/capabilities.h')
-rw-r--r--telepathy-glib/capabilities.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/telepathy-glib/capabilities.h b/telepathy-glib/capabilities.h
new file mode 100644
index 000000000..946205ba3
--- /dev/null
+++ b/telepathy-glib/capabilities.h
@@ -0,0 +1,55 @@
+/* Object representing the capabilities a Connection or a Contact supports.
+ *
+ * Copyright (C) 2010 Collabora Ltd. <http://www.collabora.co.uk/>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef __TP_CAPABILITIES_H__
+#define __TP_CAPABILITIES_H__
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+typedef struct _TpCapabilities TpCapabilities;
+typedef struct _TpCapabilitiesClass TpCapabilitiesClass;
+typedef struct _TpCapabilitiesPrivate TpCapabilitiesPrivate;
+
+GType tp_capabilities_get_type (void) G_GNUC_CONST;
+
+#define TP_TYPE_CAPABILITIES \
+ (tp_capabilities_get_type ())
+#define TP_CAPABILITIES(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((obj), TP_TYPE_CAPABILITIES, \
+ TpCapabilities))
+#define TP_CAPABILITIES_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST ((klass), TP_TYPE_CAPABILITIES, \
+ TpCapabilitiesClass))
+#define TP_IS_CAPABILITIES(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TP_TYPE_CAPABILITIES))
+#define TP_IS_CAPABILITIES_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE ((klass), TP_TYPE_CAPABILITIES))
+#define TP_CAPABILITIES_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_CAPABILITIES, \
+ TpCapabilitiesClass))
+
+GPtrArray * tp_capabilities_get_channel_classes (TpCapabilities *self);
+
+gboolean tp_capabilities_is_specific_to_contact (TpCapabilities *self);
+
+G_END_DECLS
+
+#endif