You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UIModell.py 476B

123456789101112131415161718192021222324252627
  1. from subprocess import *
  2. from threading import Thread
  3. import time
  4. class Modell(Thread):
  5. def __init__(self,c):
  6. Thread.__init__(self)
  7. self.controller = c
  8. def setFunktion(self, func, args=None, kwargs=None):
  9. pass
  10. def startCopySpelling(self):
  11. pass
  12. def trainXDawn(self):
  13. pass
  14. def trainClassifier(self):
  15. pass
  16. def freeSpelling(self):
  17. pass
  18. def killProzess(self):
  19. pass