Skip to content
Snippets Groups Projects
client_zeroconf.py 789 B
Newer Older
##      common/zeroconf/client_zeroconf.py
##
## Copyright (C) 2006 Stefan Bethge <stefan@lanpartei.de>
##
## 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; version 2 only.
##
## 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.
##

sb's avatar
sb committed
from common.zeroconf import roster_zeroconf
sb's avatar
sb committed

class ClientZeroconf:
	def __init__(self, zeroconf):
		self.roster = roster_zeroconf.Roster(zeroconf)
		
	def getRoster(self):
		return self.roster.getRoster()

	def send(self, str):
		pass