1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
.. highlight:: python
.. module:: defcon.objects.base
==========
BaseObject
==========
The main objects in defcon all subclass these objects.
.. seealso::
:class:`NotificationCenter`
The base object uses notifications to notify observers about changes. The API for subscribing/unsubscribing to notifications are detailed below. Some familiarity with the :class:`NotificationCenter` might be helpful.
BaseObject
^^^^^^^^^^
.. autoclass:: BaseObject
:members:
BaseDictObject
^^^^^^^^^^^^^^
.. autoclass:: BaseDictObject
|