comparison frontends/src/bridge/bridge_frontend.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
17 17
18 You should have received a copy of the GNU Affero General Public License 18 You should have received a copy of the GNU Affero General Public License
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 class BridgeFrontend: 22 class BridgeFrontend(object):
23 def __init__(self): 23 def __init__(self):
24 print "Bridge frontend initialization" 24 print "Bridge frontend initialization"
25 25
26 26
27 def register(self, functionName, handler): 27 def register(self, functionName, handler):