예제 #1
0
파일: abstract.go 프로젝트: gbbr/textmate
// Incref increments obj's reference count, obj may not be nil.
func (obj *AbstractObject) Incref() {
	C.incref(c(obj))
}
예제 #2
0
파일: object.go 프로젝트: MogeiWang/py
// Incref increments obj's reference count, obj may not be nil.
func (obj *Base) Incref() {
	C.incref(obj.c())
}
예제 #3
0
파일: abstract.go 프로젝트: gbbr/textmate
// Incref increments obj's reference count, obj may be nil.
func Incref(obj Object) {
	if obj != nil {
		C.incref(c(obj))
	}
}