| 1607 | //----------------------------------------------------------------------------- |
| 1608 | |
| 1609 | void SimObject::registerReference(SimObject **ptr) |
| 1610 | { |
| 1611 | Notify *note = allocNotify(); |
| 1612 | note->ptr = (void *) ptr; |
| 1613 | note->next = mNotifyList; |
| 1614 | note->type = Notify::ObjectRef; |
| 1615 | mNotifyList = note; |
| 1616 | } |
| 1617 | |
| 1618 | //----------------------------------------------------------------------------- |
| 1619 |