Adapt to LocalModel interface

This commit is contained in:
Marco Pesenti Gritti 2006-09-12 13:39:48 +02:00
parent 8ebb57d985
commit 2956a3ab8c

View File

@ -26,3 +26,6 @@ class RemoteModel(AbstractModel):
def _setup_notification_listener(self): def _setup_notification_listener(self):
self._notification = NotificationListener(self._notification_service) self._notification = NotificationListener(self._notification_service)
self._notification.add_listener(self._notify_model_change) self._notification.add_listener(self._notify_model_change)
def shutdown(self):
pass