2019-02-26 16:23:58 +01:00
|
|
|
class DebugInterface (object):
|
|
|
|
"""Defines general interface for debugging operations"""
|
|
|
|
def print_event (self, event):
|
|
|
|
raise NotImplementedError("Functions needs to be implemented")
|
|
|
|
|
|
|
|
def print_forecast (self, forecast):
|
|
|
|
raise NotImplementedError("Functions needs to be implemented")
|
|
|
|
|
2019-02-27 17:13:59 +01:00
|
|
|
def print_line (self, content):
|
2019-02-26 16:23:58 +01:00
|
|
|
raise NotImplementedError("Functions needs to be implemented")
|