bumblebee-status/bumblebee/output.py

22 lines
326 B
Python
Raw Normal View History

class Output(object):
def __init__(self, theme):
self._theme = theme
def theme(self):
return self._theme
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