2019-02-19 20:51:10 +01:00
|
|
|
class DisplayAdapter (object):
|
2019-02-20 19:18:28 +01:00
|
|
|
"""Interface for CalendarDesign output channels.
|
|
|
|
Needs implementation of width and height properties."""
|
2019-02-19 20:57:51 +01:00
|
|
|
def render (self, design):
|
2019-02-19 20:51:10 +01:00
|
|
|
raise NotImplementedError("Functions needs to be implemented")
|
|
|
|
|
2019-02-19 20:57:51 +01:00
|
|
|
def calibrate (self):
|
2019-02-19 20:51:10 +01:00
|
|
|
raise NotImplementedError("Functions needs to be implemented")
|