| 2918 | |
| 2919 | public: |
| 2920 | template <typename... Indicators> explicit DynamicProgress(Indicators &... bars) { |
| 2921 | bars_ = {bars...}; |
| 2922 | for (auto &bar : bars_) { |
| 2923 | bar.get().multi_progress_mode_ = true; |
| 2924 | ++total_count_; |
| 2925 | ++incomplete_count_; |
| 2926 | } |
| 2927 | } |
| 2928 | |
| 2929 | Indicator &operator[](size_t index) { |
| 2930 | print_progress(); |
nothing calls this directly
no outgoing calls
no test coverage detected