| 21 | |
| 22 | template<class QosType> |
| 23 | void |
| 24 | Update::Manager::update(const Update::IdPath& id, const QosType& qos) |
| 25 | { |
| 26 | // Invoke update on each of the iterators. |
| 27 | for (Updaters::iterator iter = updaters_.begin(); |
| 28 | iter != updaters_.end(); |
| 29 | iter++) { |
| 30 | (*iter)->update(id, qos); |
| 31 | } |
| 32 | } |