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
CXChildVisit_Break

\brief Terminates the cursor traversal.

CXChildVisit_Continue

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

CXChildVisit_Recurse

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

Meta