//===-- DiagnosticManager.h -------------------------------------*- 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 // //===----------------------------------------------------------------------===// #ifndef LLDB_EXPRESSION_DIAGNOSTICMANAGER_H #define LLDB_EXPRESSION_DIAGNOSTICMANAGER_H #include "lldb/lldb-defines.h" #include "lldb/lldb-types.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/StringRef.h" #include <string> #include <vector> namespace lldb_private { enum DiagnosticOrigin { … }; const uint32_t LLDB_INVALID_COMPILER_ID = …; class Diagnostic { … }; DiagnosticList; class DiagnosticManager { … }; } #endif // LLDB_EXPRESSION_DIAGNOSTICMANAGER_H