Ejemplo n.º 1
0
/**
 * \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}
}
Ejemplo n.º 2
0
/*
	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)}
}