| 31 | } |
| 32 | |
| 33 | FlashMainStream::~FlashMainStream() { |
| 34 | for (auto& it : _streams) { |
| 35 | it.second->OnStart::unsubscribe((OnStart&)*this); |
| 36 | it.second->OnStop::unsubscribe((OnStop&)*this); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | void FlashMainStream::disengage(FlashWriter* pWriter) { |
| 41 | for (auto& it : _streams) |
nothing calls this directly
no outgoing calls
no test coverage detected