//===- DiagnosticHandler.h - DiagnosticHandler class for LLVM ---*- 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 // //===----------------------------------------------------------------------===// // Base DiagnosticHandler class declaration. Derive from this class to provide // custom diagnostic reporting. //===----------------------------------------------------------------------===// #ifndef LLVM_IR_DIAGNOSTICHANDLER_H #define LLVM_IR_DIAGNOSTICHANDLER_H #include "llvm/ADT/StringRef.h" namespace llvm { class DiagnosticInfo; /// This is the base class for diagnostic handling in LLVM. /// The handleDiagnostics method must be overriden by the subclasses to handle /// diagnostic. The *RemarkEnabled methods can be overriden to control /// which remarks are enabled. struct DiagnosticHandler { … }; } // namespace llvm #endif // LLVM_IR_DIAGNOSTICHANDLER_H