| 138 | //============================================================================// |
| 139 | |
| 140 | void progressLog(int value, int total, const std::string& text) { |
| 141 | printf("Working %d/%d(%f): %s\n", value, total, (float)value / (float)total, text.c_str()); |
| 142 | } |
| 143 | |
| 144 | void progressLog(const std::string& text) { |
| 145 | printf("Working: %s\n", text.c_str()); |
no test coverage detected