Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/linklocal_plugin.py
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2007-06-06 15:20:00 (GMT)
committer Simon McVittie <simon.mcvittie@collabora.co.uk>2007-06-06 15:20:00 (GMT)
commit72ffc806b07d6bd0d3ba42d6dc2f55b798fc93af (patch)
tree80f348b2f8682116d958c38019edb70cbe6de5fb /src/linklocal_plugin.py
parent947cd5b251f9f67fc6c48614a3be871a1514a7fb (diff)
Copy sugar services/presence/ to presence-service src/
Diffstat (limited to 'src/linklocal_plugin.py')
-rw-r--r--src/linklocal_plugin.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/linklocal_plugin.py b/src/linklocal_plugin.py
new file mode 100644
index 0000000..b8f6445
--- /dev/null
+++ b/src/linklocal_plugin.py
@@ -0,0 +1,27 @@
+# Copyright (C) 2007, Red Hat, Inc.
+# Copyright (C) 2007, 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+import gobject
+
+class LinkLocalPlugin(gobject.GObject):
+ def __init__(self, registry, owner):
+ gobject.GObject.__init__(self)
+ self._registry = registry
+ self._owner = owner
+
+ def cleanup(self):
+ pass