summaryrefslogtreecommitdiff
path: root/src/protocol.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2010-07-13 18:01:23 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2010-07-15 16:21:03 +0100
commitd83b8de4203820a4a5c2317ae321e669def1cb8d (patch)
treea7b1d0edfb0fbf678f64d9a2830bd5c7b22400b2 /src/protocol.c
parent75539bc291b432b29919ff54b845f0bc46903e58 (diff)
downloadtelepathy-haze-d83b8de4203820a4a5c2317ae321e669def1cb8d.tar.gz
Add stub Protocol objects
Diffstat (limited to 'src/protocol.c')
-rw-r--r--src/protocol.c55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/protocol.c b/src/protocol.c
new file mode 100644
index 0000000..f6f094d
--- /dev/null
+++ b/src/protocol.c
@@ -0,0 +1,55 @@
+/*
+ * Haze Protocol object
+ *
+ * Copyright © 2007 Will Thompson
+ * Copyright © 2007-2010 Collabora Ltd.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ */
+
+#include "protocol.h"
+
+#include <telepathy-glib/telepathy-glib.h>
+
+G_DEFINE_TYPE (HazeProtocol, haze_protocol, TP_TYPE_BASE_PROTOCOL)
+
+static void
+haze_protocol_init (HazeProtocol *self)
+{
+}
+
+static const TpCMParamSpec *
+haze_protocol_get_parameters (TpBaseProtocol *self)
+{
+ g_assert_not_reached ();
+}
+
+static TpBaseConnection *
+haze_protocol_new_connection (TpBaseProtocol *self,
+ GHashTable *asv,
+ GError **error)
+{
+ g_assert_not_reached ();
+}
+
+static void
+haze_protocol_class_init (HazeProtocolClass *cls)
+{
+ TpBaseProtocolClass *base_class = (TpBaseProtocolClass *) cls;
+
+ base_class->get_parameters = haze_protocol_get_parameters;
+ base_class->new_connection = haze_protocol_new_connection;
+}