summaryrefslogtreecommitdiff
path: root/telepathy-glib/basic-proxy-factory.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-09-21 11:27:36 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-10-07 11:25:24 +0200
commit0b254a7098ebc2d0b09012fc8d06237b173274a1 (patch)
treeae1c2fe42c52b9c8c19960660c810ce28928f916 /telepathy-glib/basic-proxy-factory.h
parentd768d09e6cfdb9236e46f282c31d9ab41e7b8114 (diff)
downloadtelepathy-glib-0b254a7098ebc2d0b09012fc8d06237b173274a1.tar.gz
rename TpBasicChannelFactory to TpBasicProxyFactory
Diffstat (limited to 'telepathy-glib/basic-proxy-factory.h')
-rw-r--r--telepathy-glib/basic-proxy-factory.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/telepathy-glib/basic-proxy-factory.h b/telepathy-glib/basic-proxy-factory.h
new file mode 100644
index 000000000..0701dba12
--- /dev/null
+++ b/telepathy-glib/basic-proxy-factory.h
@@ -0,0 +1,63 @@
+/*
+ * Basic proxy factory
+ *
+ * Copyright © 2010 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_BASIC_PROXY_FACTORY_H__
+#define __TP_BASIC_PROXY_FACTORY_H__
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+typedef struct _TpBasicProxyFactory TpBasicProxyFactory;
+typedef struct _TpBasicProxyFactoryClass TpBasicProxyFactoryClass;
+
+struct _TpBasicProxyFactoryClass {
+ /*<public>*/
+ GObjectClass parent_class;
+};
+
+struct _TpBasicProxyFactory {
+ /*<private>*/
+ GObject parent;
+};
+
+GType tp_basic_proxy_factory_get_type (void);
+
+#define TP_TYPE_BASIC_PROXY_FACTORY \
+ (tp_basic_proxy_factory_get_type ())
+#define TP_BASIC_PROXY_FACTORY(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((obj), TP_TYPE_BASIC_PROXY_FACTORY, \
+ TpBasicProxyFactory))
+#define TP_BASIC_PROXY_FACTORY_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST ((klass), TP_TYPE_BASIC_PROXY_FACTORY, \
+ TpBasicProxyFactoryClass))
+#define TP_IS_BASIC_PROXY_FACTORY(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TP_TYPE_BASIC_PROXY_FACTORY))
+#define TP_IS_BASIC_PROXY_FACTORY_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE ((klass), TP_TYPE_BASIC_PROXY_FACTORY))
+#define TP_BASIC_PROXY_FACTORY_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_BASIC_PROXY_FACTORY, \
+ TpBasicProxyFactoryClass))
+
+TpBasicProxyFactory * tp_basic_proxy_factory_new (void);
+
+G_END_DECLS
+
+#endif