enum CXChildVisitResult

Description

Describes how the traversal of the children of a particular cursor should proceed after visiting a particular child cursor. A value of this enumeration type should be returned by each\c CXCursorVisitor to indicate how clang_visitChildren() proceed.

Declared at: clang/include/clang-c/Index.h:4249

Enumerators

NameValueComment
CXChildVisit_Break0Terminates the cursor traversal.
CXChildVisit_Continue1Continues the cursor traversal with the next sibling of the cursor just visited, without visiting its children.
CXChildVisit_Recurse2Recursively traverse the children of this cursor, using the same visitor and client data.