// DeclObjCTypeEncoding returns the Objective-C type encoding for the // specified declaration. func (c Cursor) DeclObjCTypeEncoding() string { o := C.clang_getDeclObjCTypeEncoding(c.c) cstr := cxstring{o} defer cstr.Dispose() return cstr.String() }
// Returns the Objective-C type encoding for the specified declaration. func (c Cursor) DeclObjCTypeEncoding() string { o := cxstring{C.clang_getDeclObjCTypeEncoding(c.c)} defer o.Dispose() return o.String() }