summaryrefslogtreecommitdiff
path: root/telepathy-glib/automatic-client-factory.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.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.h')
-rw-r--r--telepathy-glib/automatic-client-factory.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/telepathy-glib/automatic-client-factory.h b/telepathy-glib/automatic-client-factory.h
new file mode 100644
index 000000000..10d6c4bdb
--- /dev/null
+++ b/telepathy-glib/automatic-client-factory.h
@@ -0,0 +1,66 @@
+/*
+ * Factory creating higher level objects
+ *
+ * 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_H__
+#define __TP_AUTOMATIC_CLIENT_FACTORY_H__
+
+#include <telepathy-glib/file-transfer-channel.h>
+#include <telepathy-glib/simple-client-factory.h>
+#include <telepathy-glib/stream-tube-channel.h>
+#include <telepathy-glib/text-channel.h>
+
+G_BEGIN_DECLS
+
+typedef struct _TpAutomaticClientFactory TpAutomaticClientFactory;
+typedef struct _TpAutomaticClientFactoryClass TpAutomaticClientFactoryClass;
+
+struct _TpAutomaticClientFactoryClass {
+ /*<public>*/
+ TpSimpleClientFactoryClass parent_class;
+};
+
+struct _TpAutomaticClientFactory {
+ /*<private>*/
+ TpSimpleClientFactory parent;
+};
+
+GType tp_automatic_client_factory_get_type (void);
+
+#define TP_TYPE_AUTOMATIC_CLIENT_FACTORY \
+ (tp_automatic_client_factory_get_type ())
+#define TP_AUTOMATIC_CLIENT_FACTORY(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((obj), TP_TYPE_AUTOMATIC_CLIENT_FACTORY, \
+ TpAutomaticClientFactory))
+#define TP_AUTOMATIC_CLIENT_FACTORY_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST ((klass), TP_TYPE_AUTOMATIC_CLIENT_FACTORY, \
+ TpAutomaticClientFactoryClass))
+#define TP_IS_AUTOMATIC_CLIENT_FACTORY(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TP_TYPE_AUTOMATIC_CLIENT_FACTORY))
+#define TP_IS_AUTOMATIC_CLIENT_FACTORY_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE ((klass), TP_TYPE_AUTOMATIC_CLIENT_FACTORY))
+#define TP_AUTOMATIC_CLIENT_FACTORY_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_AUTOMATIC_CLIENT_FACTORY, \
+ TpAutomaticClientFactoryClass))
+
+TpAutomaticClientFactory *tp_automatic_client_factory_new (TpDBusDaemon *dbus);
+
+G_END_DECLS
+
+#endif