// ---------------------------------------------------------------------------ProgressBarMthread.h #ifndef PROGRESSBARMTHREAD #define PROGRESSBARMTHREAD #include <unordered_map> #include <mutex> class ProgressBarMthread { private: std::unordered_map<std::thread::id, int> mapX; ...