Create applicationManager.py

This commit is contained in:
chrys87 2016-09-23 09:35:22 +02:00 committed by GitHub
parent 366180a42e
commit 424a1fc535

View File

@ -0,0 +1,21 @@
#!/bin/python
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
class applicationManager():
def __init__(self):
pass
def initialize(self, environment):
self.env = environment
def shutdown(self):
pass
def getCurrentApplication(self):
pass
def getPrevApplication(self):
pass
def isApplicationChange(self):
pass