コード例 #1
0
ファイル: cursor.go プロジェクト: quarnster/go-clang
/**
 * \brief For cursors representing an iboutletcollection attribute,
 *  this function returns the collection element type.
 *
 */
func (c Cursor) IBOutletCollectionType() Type {
	o := C.clang_getIBOutletCollectionType(c.c)
	return Type{o}
}
コード例 #2
0
ファイル: cursor_gen.go プロジェクト: go-clang/v3.6
/*
	For cursors representing an iboutletcollection attribute,
	this function returns the collection element type.
*/
func (c Cursor) IBOutletCollectionType() Type {
	return Type{C.clang_getIBOutletCollectionType(c.c)}
}