#!/usr/bin/python ########################################################################### # testappiface - description # # ------------------------------ # # begin : Fri Jun 27 2003 # # copyright : (C) 2005 by AUTHOR # # email : your@email.com # # # ########################################################################### # # # 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. # # # ########################################################################### from dcopexport import DCOPExObj class TestAppIface(DCOPExObj): def __init__(self, parent, id="Value"): DCOPExObj.__init__(self, id) self.addMethod("void openURL(QString url)", self.openURL) def openURL(self,url): pass