diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-06-26 20:39:18 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-06-26 20:39:18 +0000 |
commit | 2d44d77fed3200e2eff289f55493317e90d3398c (patch) | |
tree | d1d93511e3b05ef54497369d2d0ca603499d2862 /include/clang-c/Index.h | |
parent | 5283c99365ec4697a5a6bb2b2505469a9aa474d5 (diff) |
Implement a lexer for structured comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159223 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c/Index.h')
-rw-r--r-- | include/clang-c/Index.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index b7bd8bb738..2397ae1925 100644 --- a/include/clang-c/Index.h +++ b/include/clang-c/Index.h @@ -3201,6 +3201,12 @@ CINDEX_LINKAGE CXSourceRange clang_Cursor_getCommentRange(CXCursor C); CINDEX_LINKAGE CXString clang_Cursor_getRawCommentText(CXCursor C); /** + * \brief Given a cursor that represents a declaration, return the associated + * \\brief paragraph; otherwise return the first paragraph. + */ +CINDEX_LINKAGE CXString clang_Cursor_getBriefCommentText(CXCursor C); + +/** * @} */ |