Forgot to add this
This commit is contained in:
parent
94355dd372
commit
acf29ef25e
10
sugar/p2p/model/AbstractModel.py
Normal file
10
sugar/p2p/model/AbstractModel.py
Normal file
@ -0,0 +1,10 @@
|
||||
class AbstractModel:
|
||||
def __init__(self):
|
||||
self._listeners = []
|
||||
|
||||
def add_listener(self, listener):
|
||||
self._listeners.append(listener)
|
||||
|
||||
def _notify_model_change(self, key):
|
||||
for listener in self._listeners:
|
||||
listener(self, key)
|
Loading…
Reference in New Issue
Block a user