#ifndef GETTIMELABEL_H #define GETTIMELABEL_H #include #include /** * @fn std::string getTimeLabel(int ms, std::string delim = ":") * @brief Convert an int representing milliseconds to the corresponding Time * Label string. * * @param ms the number of milliseconds. * @param delim the time separator * @return string the corresponding Time Label string. */ std::string getTimeLabel(int ms, std::string delim = ":"); int time_label_to_ms(std::string time_label); #endif // GETTIMELABEL_H