//===--- SARIFDiagnostic.h - SARIF Diagnostic Formatting -----*- C++ -*-===// // // 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 is a utility class that provides support for constructing a SARIF object // containing diagnostics. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_FRONTEND_SARIFDIAGNOSTIC_H #define LLVM_CLANG_FRONTEND_SARIFDIAGNOSTIC_H #include "clang/Basic/Sarif.h" #include "clang/Frontend/DiagnosticRenderer.h" #include "llvm/ADT/StringRef.h" namespace clang { class SARIFDiagnostic : public DiagnosticRenderer { … }; } // end namespace clang #endif