aboutsummaryrefslogtreecommitdiffstats
path: root/ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-07-23 17:15:57 +0800
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-07-30 14:56:45 +0800
commit671a16046a634beefc524bc24a2e7eebdee480a5 (patch)
tree0a2c8f1946ae3bab3c09276db3691a981ecb4fd9 /ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.c
parent89800f161fb162f30aa4d13d3cb9707b553442fa (diff)
downloadgsoc2013-empathy-671a16046a634beefc524bc24a2e7eebdee480a5.tar
gsoc2013-empathy-671a16046a634beefc524bc24a2e7eebdee480a5.tar.gz
gsoc2013-empathy-671a16046a634beefc524bc24a2e7eebdee480a5.tar.bz2
gsoc2013-empathy-671a16046a634beefc524bc24a2e7eebdee480a5.tar.lz
gsoc2013-empathy-671a16046a634beefc524bc24a2e7eebdee480a5.tar.xz
gsoc2013-empathy-671a16046a634beefc524bc24a2e7eebdee480a5.tar.zst
gsoc2013-empathy-671a16046a634beefc524bc24a2e7eebdee480a5.zip
add empathy-app-plugin
https://bugzilla.gnome.org/show_bug.cgi?id=680449
Diffstat (limited to 'ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.c')
-rw-r--r--ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.c b/ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.c
new file mode 100644
index 000000000..b9501efcf
--- /dev/null
+++ b/ubuntu-online-accounts/cc-plugins/app-plugin/empathy-app-plugin.c
@@ -0,0 +1,52 @@
+/*
+ * empathy-app-plugin.c
+ *
+ * Copyright (C) 2012 Collabora Ltd. <http://www.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
+ */
+
+#include "config.h"
+
+#include "empathy-app-plugin.h"
+
+
+G_DEFINE_TYPE (EmpathyAppPlugin, empathy_app_plugin, AP_TYPE_APPLICATION_PLUGIN)
+
+static GtkWidget *
+empathy_app_plugin_build_widget (ApApplicationPlugin *plugin)
+{
+ /* TODO */
+ return NULL;
+}
+
+static void
+empathy_app_plugin_class_init (EmpathyAppPluginClass *klass)
+{
+ ApApplicationPluginClass *app_class = AP_APPLICATION_PLUGIN_CLASS (klass);
+
+ app_class->build_widget = empathy_app_plugin_build_widget;
+}
+
+static void
+empathy_app_plugin_init (EmpathyAppPlugin *self)
+{
+}
+
+GType
+ap_module_get_object_type (void)
+{
+ return EMPATHY_TYPE_APP_PLUGIN;
+}