MCPcopy Create free account
hub / github.com/KTH-RPL/dufomap / MultiProgress

Method MultiProgress

src/indicators.hpp:2835–2840  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected