summaryrefslogtreecommitdiff
path: root/telepathy-glib/automatic-client-factory-internal.h
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2011-07-15 16:36:02 +0200
committerXavier Claessens <xclaesse@gmail.com>2011-07-20 15:00:23 +0200
commitb74a3c1288b5e871fd2d231beb4cf692b0b42d9e (patch)
tree8a35e0466dc7ebd5b80ea0fff63f3332ba798375 /telepathy-glib/automatic-client-factory-internal.h
parentebe0c53202e216cd049e4b59e4d49d5b5e7f67db (diff)
downloadtelepathy-glib-b74a3c1288b5e871fd2d231beb4cf692b0b42d9e.tar.gz
Add TpAutomaticClientFactory
This is a subclass of TpSimpleClientFactory that creates specialized TpChannel objects, like TpTextChannel and TpStreamTubeChannel
Diffstat (limited to 'telepathy-glib/automatic-client-factory-internal.h')
-rw-r--r--telepathy-glib/automatic-client-factory-internal.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/telepathy-glib/automatic-client-factory-internal.h b/telepathy-glib/automatic-client-factory-internal.h
new file mode 100644
index 000000000..ba93c6d6d
--- /dev/null
+++ b/telepathy-glib/automatic-client-factory-internal.h
@@ -0,0 +1,45 @@
+/*
+ * Automatic client factory internal
+ *
+ * Copyright © 2011 Collabora Ltd.
+ *
+ * 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_AUTOMATIC_CLIENT_FACTORY_INTERNAL_H__
+#define __TP_AUTOMATIC_CLIENT_FACTORY_INTERNAL_H__
+
+#include <telepathy-glib/automatic-client-factory.h>
+
+G_BEGIN_DECLS
+
+TpTextChannel *_tp_text_channel_new_with_factory (
+ TpSimpleClientFactory *factory, TpConnection *conn,
+ const gchar *object_path, const GHashTable *immutable_properties,
+ GError **error);
+
+TpStreamTubeChannel *_tp_stream_tube_channel_new_with_factory (
+ TpSimpleClientFactory *factory,
+ TpConnection *conn, const gchar *object_path,
+ const GHashTable *immutable_properties, GError **error);
+
+TpFileTransferChannel *_tp_file_transfer_channel_new_with_factory (
+ TpSimpleClientFactory *factory,
+ TpConnection *conn, const gchar *object_path,
+ const GHashTable *immutable_properties, GError **error);
+
+G_END_DECLS
+
+#endif