Add add method to BaseCurrentPlaylistController

This commit is contained in:
Thomas Adamcik 2010-02-07 05:31:39 +01:00
parent c9c0a23956
commit da8efb34fe

View File

@ -17,6 +17,9 @@ class BaseCurrentPlaylistController(object):
def __init__(self, backend):
self.backend = backend
def add(self, track, at_position=None):
raise NotImplementedError
class BasePlaybackController(object):
PAUSED = 'paused'
PLAYING = 'playing'