mirror of
https://github.com/brmlab/edubrm.git
synced 2025-06-09 05:14:01 +02:00
start writing debugmodule
This commit is contained in:
parent
e809984eb2
commit
4b73d98c11
12 changed files with 58 additions and 24 deletions
14
software/modules/ModuleDebug.py
Normal file
14
software/modules/ModuleDebug.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
from module import Module
|
||||
from ModuleDebugUi import Ui_ModuleDebug
|
||||
|
||||
class ModuleDebug(Module):
|
||||
|
||||
title = 'Debug'
|
||||
|
||||
def setup(self, area):
|
||||
print 'setup Debug'
|
||||
self.ui = Ui_ModuleDebug()
|
||||
self.ui.setupUi(area)
|
||||
|
||||
def run(self):
|
||||
print 'run Debug'
|
Loading…
Add table
Add a link
Reference in a new issue