| 60 | } |
| 61 | |
| 62 | std::shared_ptr<const Track> |
| 63 | UIHandle::TrackFromChannel(const std::shared_ptr<const Channel> &pChannel) |
| 64 | { |
| 65 | return pChannel |
| 66 | ? static_cast<const Track &>(pChannel->GetChannelGroup()) |
| 67 | .shared_from_this() |
| 68 | : nullptr; |
| 69 | } |
nothing calls this directly
no test coverage detected