22 lines
452 B
Python
22 lines
452 B
Python
|
#!/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
|