| 1753 | //----------------------------------------------------------------------------- |
| 1754 | |
| 1755 | void SimObject::registerReference(SimObject **ptr) |
| 1756 | { |
| 1757 | Notify *note = allocNotify(); |
| 1758 | note->ptr = (void *) ptr; |
| 1759 | note->next = mNotifyList; |
| 1760 | note->type = Notify::ObjectRef; |
| 1761 | mNotifyList = note; |
| 1762 | } |
| 1763 | |
| 1764 | //----------------------------------------------------------------------------- |
| 1765 |