2019-02-26 16:23:58 +01:00
|
|
|
class DebugInterface (object):
|
|
|
|
"""Defines general interface for debugging operations"""
|
2019-07-13 08:05:35 +02:00
|
|
|
|
|
|
|
def print_event(self, event):
|
2019-02-26 16:23:58 +01:00
|
|
|
raise NotImplementedError("Functions needs to be implemented")
|
|
|
|
|
2019-07-13 08:05:35 +02:00
|
|
|
def print_forecast(self, forecast):
|
2019-02-26 16:23:58 +01:00
|
|
|
raise NotImplementedError("Functions needs to be implemented")
|
|
|
|
|
2019-07-13 08:05:35 +02:00
|
|
|
def print_line(self, content):
|
2019-04-11 07:59:58 +02:00
|
|
|
raise NotImplementedError("Functions needs to be implemented")
|
|
|
|
|
2019-07-13 08:05:35 +02:00
|
|
|
def print_err(self, exception, msg=""):
|
|
|
|
raise NotImplementedError("Functions needs to be implemented")
|