Added interfaces for additional information

This commit is contained in:
Maximilian Giller 2019-03-09 15:22:49 +01:00
parent b7b4d4f0fd
commit e327d359a5

View file

@ -23,6 +23,15 @@ class DayHeaderDesign (DesignEntity):
self.__init_image__(color=background_color) self.__init_image__(color=background_color)
self.date = date self.date = date
def add_weather (self, weather):
pass
def add_calendar (self, calendar):
pass
def add_rssfeed (self, rss):
pass
def __finish_image__ (self): def __finish_image__ (self):
self.__draw_number_square__() self.__draw_number_square__()
self.__draw_month__() self.__draw_month__()