summaryrefslogtreecommitdiff
path: root/src/call-channel.h
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-10-23 15:05:31 +0100
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-12-07 18:58:04 +0000
commitaaa035a9c83b080259bc66b3739d24230682f0d8 (patch)
tree8e95e7dfd82ba9bd90efbe33d1fe18d24ce72142 /src/call-channel.h
parentb32e4791b7b6ac9b2ade86b68abac144404b26ac (diff)
downloadtelepathy-gabble-aaa035a9c83b080259bc66b3739d24230682f0d8.tar.gz
Add first dummy implementation of a Call channel
Diffstat (limited to 'src/call-channel.h')
-rw-r--r--src/call-channel.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/call-channel.h b/src/call-channel.h
new file mode 100644
index 000000000..7998ad1fc
--- /dev/null
+++ b/src/call-channel.h
@@ -0,0 +1,64 @@
+/*
+ * gabble-call-channel.h - Header for GabbleCallChannel
+ * Copyright (C) 2009 Collabora Ltd.
+ * @author Sjoerd Simons <sjoerd.simons@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 __GABBLE_CALL_CHANNEL_H__
+#define __GABBLE_CALL_CHANNEL_H__
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+typedef struct _GabbleCallChannel GabbleCallChannel;
+typedef struct _GabbleCallChannelPrivate GabbleCallChannelPrivate;
+typedef struct _GabbleCallChannelClass GabbleCallChannelClass;
+
+struct _GabbleCallChannelClass {
+ GObjectClass parent_class;
+
+ TpDBusPropertiesMixinClass dbus_props_class;
+};
+
+struct _GabbleCallChannel {
+ GObject parent;
+
+ GabbleCallChannelPrivate *priv;
+};
+
+GType gabble_call_channel_get_type (void);
+
+/* TYPE MACROS */
+#define GABBLE_TYPE_CALL_CHANNEL \
+ (gabble_call_channel_get_type ())
+#define GABBLE_CALL_CHANNEL(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((obj), GABBLE_TYPE_CALL_CHANNEL, GabbleCallChannel))
+#define GABBLE_CALL_CHANNEL_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass), GABBLE_TYPE_CALL_CHANNEL, GabbleCallChannelClass))
+#define GABBLE_IS_CALL_CHANNEL(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj), GABBLE_TYPE_CALL_CHANNEL))
+#define GABBLE_IS_CALL_CHANNEL_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass), GABBLE_TYPE_CALL_CHANNEL))
+#define GABBLE_CALL_CHANNEL_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), GABBLE_TYPE_CALL_CHANNEL, GabbleCallChannelClass))
+
+void gabble_call_channel_close (GabbleCallChannel *self);
+
+G_END_DECLS
+
+#endif /* #ifndef __GABBLE_CALL_CHANNEL_H__*/