//===--- CommentParser.h - Doxygen comment parser ---------------*- 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 Doxygen comment parser. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_AST_COMMENTPARSER_H #define LLVM_CLANG_AST_COMMENTPARSER_H #include "clang/AST/Comment.h" #include "clang/AST/CommentLexer.h" #include "clang/AST/CommentSema.h" #include "clang/Basic/Diagnostic.h" #include "llvm/Support/Allocator.h" namespace clang { class SourceManager; namespace comments { class CommandTraits; /// Doxygen comment parser. class Parser { … }; } // end namespace comments } // end namespace clang #endif