| 2833 | template <typename... Indicators, |
| 2834 | typename = typename std::enable_if<(sizeof...(Indicators) == count)>::type> |
| 2835 | explicit MultiProgress(Indicators &... bars) { |
| 2836 | bars_ = {bars...}; |
| 2837 | for (auto &bar : bars_) { |
| 2838 | bar.get().multi_progress_mode_ = true; |
| 2839 | } |
| 2840 | } |
| 2841 | |
| 2842 | template <size_t index> |
| 2843 | typename std::enable_if<(index >= 0 && index < count), void>::type set_progress(size_t value) { |
nothing calls this directly
no outgoing calls
no test coverage detected