コード例 #1
0
ファイル: cursor.go プロジェクト: quarnster/go-clang
// Spelling returns the name of the entity referenced by this cursor.
func (c Cursor) Spelling() string {
	cstr := cxstring{C.clang_getCursorSpelling(c.c)}
	defer cstr.Dispose()
	return cstr.String()
}
コード例 #2
0
ファイル: cursor_gen.go プロジェクト: go-clang/v3.6
// Retrieve a name for the entity referenced by this cursor.
func (c Cursor) Spelling() string {
	o := cxstring{C.clang_getCursorSpelling(c.c)}
	defer o.Dispose()

	return o.String()
}