//===--- RawCommentList.h - Classes for processing raw comments -*- 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 LLVM_CLANG_AST_RAWCOMMENTLIST_H #define LLVM_CLANG_AST_RAWCOMMENTLIST_H #include "clang/Basic/CommentOptions.h" #include "clang/Basic/SourceLocation.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/DenseMap.h" #include "llvm/Support/Allocator.h" #include <map> namespace clang { class ASTContext; class ASTReader; class Decl; class DiagnosticsEngine; class Preprocessor; class SourceManager; namespace comments { class FullComment; } // end namespace comments class RawComment { … }; /// This class represents all comments included in the translation unit, /// sorted in order of appearance in the translation unit. class RawCommentList { … }; } // end namespace clang #endif