| 473 | } |
| 474 | |
| 475 | void LogStream::insertNotification(std::ostream & s, LogStreamNotifier & target) |
| 476 | { |
| 477 | if (!bound_()) |
| 478 | { |
| 479 | return; |
| 480 | } |
| 481 | insert(s); |
| 482 | |
| 483 | StreamIterator it = findStream_(s); |
| 484 | (*it).target = ⌖ |
| 485 | } |
| 486 | |
| 487 | LogStream::StreamIterator LogStream::findStream_(const std::ostream & s) |
| 488 | { |