CXChildVisitResult

\brief 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.

Values

ValueMeaning
break_0

\brief Terminates the cursor traversal.

continue_1

\brief Continues the cursor traversal with the next sibling of the cursor just visited, without visiting its children.

recurse2

\brief Recursively traverse the children of this cursor, using the same visitor and client data.

Meta