//===--- CommentSema.h - Doxygen comment semantic analysis ------*- 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 the semantic analysis class for Doxygen comments. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_AST_COMMENTSEMA_H #define LLVM_CLANG_AST_COMMENTSEMA_H #include "clang/AST/Comment.h" #include "clang/Basic/Diagnostic.h" #include "clang/Basic/SourceLocation.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/StringMap.h" #include "llvm/ADT/StringRef.h" #include "llvm/Support/Allocator.h" namespace clang { class Decl; class SourceMgr; class Preprocessor; namespace comments { class CommandTraits; class Sema { … }; } // end namespace comments } // end namespace clang #endif