6daf2dff6f
* Split the benchmark monolithic header * src uses modular headers * updated tests to use split headers * clang-format * clang-format mistake * fix exports * suppress warnings on msvc * fixing double pops and some more missing exports
31 lines
1.0 KiB
C
31 lines
1.0 KiB
C
// Copyright 2015 Google Inc. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef BENCHMARK_BENCHMARK_H_
|
|
#define BENCHMARK_BENCHMARK_H_
|
|
|
|
#include "benchmark/benchmark_api.h"
|
|
#include "benchmark/counter.h"
|
|
#include "benchmark/macros.h"
|
|
#include "benchmark/managers.h"
|
|
#include "benchmark/registration.h"
|
|
#include "benchmark/reporter.h"
|
|
#include "benchmark/state.h"
|
|
#include "benchmark/statistics.h"
|
|
#include "benchmark/sysinfo.h"
|
|
#include "benchmark/types.h"
|
|
#include "benchmark/utils.h"
|
|
|
|
#endif // BENCHMARK_BENCHMARK_H_
|