clang  19.0.0git
CommentToXML.h
Go to the documentation of this file.
1 //===--- CommentToXML.h - Convert comments to XML representation ----------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef LLVM_CLANG_INDEX_COMMENTTOXML_H
10 #define LLVM_CLANG_INDEX_COMMENTTOXML_H
11 
12 #include "clang/Basic/LLVM.h"
13 
14 namespace clang {
15 class ASTContext;
16 
17 namespace comments {
18 class FullComment;
19 class HTMLTagComment;
20 }
21 
22 namespace index {
24 public:
27 
30  const ASTContext &Context);
31 
34  const ASTContext &Context);
35 
38  const ASTContext &Context);
39 };
40 
41 } // namespace index
42 } // namespace clang
43 
44 #endif // LLVM_CLANG_INDEX_COMMENTTOXML_H
45 
StringRef Text
Definition: Format.cpp:2977
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition: ASTContext.h:185
A full comment attached to a declaration, contains block content.
Definition: Comment.h:1083
Abstract class for opening and closing HTML tags.
Definition: Comment.h:391
void convertCommentToXML(const comments::FullComment *FC, SmallVectorImpl< char > &XML, const ASTContext &Context)
void convertHTMLTagNodeToText(const comments::HTMLTagComment *HTC, SmallVectorImpl< char > &Text, const ASTContext &Context)
void convertCommentToHTML(const comments::FullComment *FC, SmallVectorImpl< char > &HTML, const ASTContext &Context)
The JSON file list parser is used to communicate input to InstallAPI.