| 1784 | //----------------------------------------------------------------------------- |
| 1785 | |
| 1786 | void SimObject::clearNotify(SimObject* obj) |
| 1787 | { |
| 1788 | Notify *note = obj->removeNotify((void *) this, Notify::DeleteNotify); |
| 1789 | if(note) |
| 1790 | freeNotify(note); |
| 1791 | |
| 1792 | note = removeNotify((void *) obj, Notify::ClearNotify); |
| 1793 | if(note) |
| 1794 | freeNotify(note); |
| 1795 | } |
| 1796 | |
| 1797 | //----------------------------------------------------------------------------- |
| 1798 |
no test coverage detected