clboss/Util/duration.hpp
2021-04-26 16:17:10 +08:00

17 lines
283 B
C++

#ifndef UTIL_DURATION_HPP
#define UTIL_DURATION_HPP
#include<string>
namespace Util {
/** Util::duration
*
* @brief Provides a human-readable description of a
* duration given in seconds.
*/
std::string duration(double duration);
}
#endif /* !defined (UTIL_DURATION_HPP) */