//===-- Timer.cpp --------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "Timer.h" #include "src/__support/macros/config.h" #include <chrono> #include <fstream> namespace LIBC_NAMESPACE_DECL { namespace testing { struct TimerImplementation { … }; Timer::Timer() : … { … } Timer::~Timer() { … } void Timer::start() { … } void Timer::stop() { … } uint64_t Timer::nanoseconds() const { … } } // namespace testing } // namespace LIBC_NAMESPACE_DECL