//===--- PrettyPrinter.h - Classes for aiding with AST printing -*- 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 file defines helper types for AST pretty-printing. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_AST_PRETTYPRINTER_H #define LLVM_CLANG_AST_PRETTYPRINTER_H #include "clang/Basic/LLVM.h" #include "clang/Basic/LangOptions.h" namespace clang { class DeclContext; class LangOptions; class Stmt; class PrinterHelper { … }; /// Callbacks to use to customize the behavior of the pretty-printer. class PrintingCallbacks { … }; /// Describes how types, statements, expressions, and declarations should be /// printed. /// /// This type is intended to be small and suitable for passing by value. /// It is very frequently copied. struct PrintingPolicy { … }; } // end namespace clang #endif