//===- CoverageViewOptions.h - Code coverage display options -------------===// // // 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 // //===----------------------------------------------------------------------===// #ifndef LLVM_COV_COVERAGEVIEWOPTIONS_H #define LLVM_COV_COVERAGEVIEWOPTIONS_H #include "llvm/Config/llvm-config.h" #include "RenderingSupport.h" #include <vector> namespace llvm { /// The options for displaying the code coverage information. struct CoverageViewOptions { … }; } #endif // LLVM_COV_COVERAGEVIEWOPTIONS_H