start/stop modules

This commit is contained in:
Pavol Rusnak 2011-04-23 22:24:59 +02:00
parent 3aa8986d49
commit 0cce0afdc2
3 changed files with 14 additions and 4 deletions

View file

@ -4,5 +4,8 @@ class ModuleA():
self.title = 'A'
self.widget = None
def run(self):
print 'run A'
def start(self):
print 'start A'
def stop(self):
print 'stop A'