mirror of
https://github.com/google/benchmark.git
synced 2025-02-11 20:00:19 +08:00
18 lines
295 B
C++
18 lines
295 B
C++
#ifndef BENCHMARK_WALLTIME_H_
|
|
#define BENCHMARK_WALLTIME_H_
|
|
|
|
#include <string>
|
|
|
|
namespace benchmark {
|
|
typedef double WallTime;
|
|
|
|
namespace walltime {
|
|
WallTime Now();
|
|
} // end namespace walltime
|
|
|
|
std::string LocalDateTimeString();
|
|
|
|
} // end namespace benchmark
|
|
|
|
#endif // BENCHMARK_WALLTIME_H_
|