summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/benchmark/src/walltime.h
blob: 38c26f332134da6ee74ad61b04e10ab5fd3eb745 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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_