File tree Expand file tree Collapse file tree 3 files changed +21
-48
lines changed Expand file tree Collapse file tree 3 files changed +21
-48
lines changed Original file line number Diff line number Diff line change 12
12
#ifndef MRDOX_COMMENT_VISITOR_HPP
13
13
#define MRDOX_COMMENT_VISITOR_HPP
14
14
15
- #include " Javadoc.h"
16
15
#include " Representation.h"
17
16
#include < clang/AST/ASTContext.h>
18
17
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 17
17
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_DOC_REPRESENTATION_H
18
18
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_DOC_REPRESENTATION_H
19
19
20
- #include " Javadoc.h"
21
20
#include < clang/AST/Type.h>
22
21
#include < clang/Basic/Specifiers.h>
23
22
#include < clang/Tooling/StandaloneExecution.h>
@@ -49,6 +48,27 @@ enum class InfoType {
49
48
IT_typedef
50
49
};
51
50
51
+ /* * A single verbatim block.
52
+ */
53
+ struct VerbatimBlock
54
+ {
55
+ std::string text;
56
+ };
57
+
58
+ /* * A complete javadoc attached to a declaration
59
+ */
60
+ struct Javadoc
61
+ {
62
+ /* * The brief description.
63
+ */
64
+ llvm::SmallString<32 > brief;
65
+
66
+ /* * The detailed description.
67
+ */
68
+ // llvm::SmallString<32> desc; // asciidoc
69
+ std::string desc; // asciidoc
70
+ };
71
+
52
72
// A representation of a parsed comment.
53
73
struct CommentInfo
54
74
{
You can’t perform that action at this time.
0 commit comments