//===- CoverageReport.h - Code coverage report ----------------------------===// // // 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 // //===----------------------------------------------------------------------===// // // This class implements rendering of a code coverage report. // //===----------------------------------------------------------------------===// #ifndef LLVM_COV_COVERAGEREPORT_H #define LLVM_COV_COVERAGEREPORT_H #include "CoverageFilters.h" #include "CoverageSummaryInfo.h" #include "CoverageViewOptions.h" #include <map> namespace llvm { class ThreadPoolInterface; /// Displays the code coverage report. class CoverageReport { … }; /// Prepare reports for every non-trivial directories (which have more than 1 /// source files) of the source files. This class uses template method pattern. class DirectoryCoverageReport { … }; } // end namespace llvm #endif // LLVM_COV_COVERAGEREPORT_H