| 301 | } |
| 302 | |
| 303 | void |
| 304 | Manager::destroy(const IdPath& id, ItemType type, ActorType actor) |
| 305 | { |
| 306 | // Invoke remove on each of the iterators. |
| 307 | for (Updaters::iterator iter = updaters_.begin(); |
| 308 | iter != updaters_.end(); |
| 309 | iter++) { |
| 310 | (*iter)->destroy(id, type, actor); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | void |
| 315 | Manager::add(const DTopic& topic) |
no test coverage detected