16 lines
217 B
Python
16 lines
217 B
Python
|
|
||
|
class Output(object):
|
||
|
def start(self):
|
||
|
pass
|
||
|
|
||
|
def add(self, obj):
|
||
|
pass
|
||
|
|
||
|
def get(self):
|
||
|
pass
|
||
|
|
||
|
def stop(self):
|
||
|
pass
|
||
|
|
||
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|