comparison src/bridge/bridge.py @ 568:239abc5484c9

bridge: generic plugin methods handling for frontend side in D-Bus Bridge \o/
author Goffi <goffi@goffi.org>
date Mon, 07 Jan 2013 01:01:10 +0100
parents 2a072735e459
children ca13633d3b6b
comparison
equal deleted inserted replaced
567:01569aa4d7aa 568:239abc5484c9
19 along with this program. If not, see <http://www.gnu.org/licenses/>. 19 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 """ 20 """
21 21
22 from logging import debug, info, error 22 from logging import debug, info, error
23 23
24 class Bridge: 24 class Bridge(object):
25 def __init__(self): 25 def __init__(self):
26 info ("Bridge initialization") 26 info ("Bridge initialization")
27 27
28 ##signals 28 ##signals
29 def newContact(self, contact): 29 def newContact(self, contact):