CXChildVisitResult

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
CXChildVisit_Break0

Terminates the cursor traversal.

CXChildVisit_Continue1

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

CXChildVisit_Recurse2

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

Meta