mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-16 13:00:59 +02:00
17 lines
283 B
C++
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) */
|