| 2744 | } |
| 2745 | |
| 2746 | std::pair<std::string, int> get_postfix_text() { |
| 2747 | std::stringstream os; |
| 2748 | os << " " << get_value<details::ProgressBarOption::postfix_text>(); |
| 2749 | |
| 2750 | const auto result = os.str(); |
| 2751 | const auto result_size = unicode::display_width(result); |
| 2752 | return {result, result_size}; |
| 2753 | } |
| 2754 | |
| 2755 | public: |
| 2756 | void print_progress(bool from_multi_progress = false) { |
nothing calls this directly
no test coverage detected