/*===-- CXLoadedDiagnostic.h - Handling of persisent diags ------*- 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 *| |* *| |*===----------------------------------------------------------------------===*| |* *| |* Implements handling of persisent diagnostics. *| |* *| \*===----------------------------------------------------------------------===*/ #ifndef LLVM_CLANG_TOOLS_LIBCLANG_CXLOADEDDIAGNOSTIC_H #define LLVM_CLANG_TOOLS_LIBCLANG_CXLOADEDDIAGNOSTIC_H #include "CIndexDiagnostic.h" #include "llvm/ADT/StringRef.h" #include "clang/Basic/LLVM.h" #include <vector> namespace clang { class CXLoadedDiagnostic : public CXDiagnosticImpl { … }; } #endif