| 242 | }; |
| 243 | |
| 244 | static EnumValueSymbols DiscoverSubViewTypes() |
| 245 | { |
| 246 | const auto &types = WaveChannelSubViewType::All(); |
| 247 | auto result = transform_container< EnumValueSymbols >( |
| 248 | types, std::mem_fn(&WaveChannelSubView::Type::name) ); |
| 249 | result.push_back(WaveChannelViewConstants::MultiViewSymbol); |
| 250 | return result; |
| 251 | } |
| 252 | |
| 253 | template<bool Const> |
| 254 | bool SetTrackVisualsCommand::VisitSettings( SettingsVisitorBase<Const> & S ){ |
no test coverage detected