예제 #1
0
// Kind returns the cursor's kind.
func (c Cursor) Kind() CursorKind {
	o := C.clang_getCursorKind(c.c)
	return CursorKind(o)
}
예제 #2
0
파일: cursor_gen.go 프로젝트: go-clang/v3.6
// Retrieve the kind of the given cursor.
func (c Cursor) Kind() CursorKind {
	return CursorKind(C.clang_getCursorKind(c.c))
}