epgcache: add possibility to change the default epg cache read/write path
[enigma2.git] / lib / python / Screens / PVRState.py
1 from Screen import Screen
2
3 from Components.Label import Label
4
5 class PVRState(Screen):
6         def __init__(self, session):
7                 Screen.__init__(self, session)
8                 self["state"] = Label(text="")
9
10 class TimeshiftState(PVRState):
11         pass
12