| 9 | |
| 10 | template<class UType> |
| 11 | void |
| 12 | Update::Manager::create(const UType& info) |
| 13 | { |
| 14 | // Invoke add on each of the iterators. |
| 15 | for (Updaters::iterator iter = updaters_.begin(); |
| 16 | iter != updaters_.end(); |
| 17 | iter++) { |
| 18 | (*iter)->create(info); |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | template<class QosType> |
| 23 | void |
no test coverage detected