예제 #1
0
/*
	Parameter Comment AST node of any kind.

	Returns number of children of the AST node.
*/
func (c Comment) NumChildren() uint32 {
	return uint32(C.clang_Comment_getNumChildren(c.c))
}
예제 #2
0
파일: comment.go 프로젝트: zimmski/go-clang
/**
 * \param Comment AST node of any kind.
 *
 * \returns number of children of the AST node.
 */
func (c Comment) NumChildren() int {
	return int(C.clang_Comment_getNumChildren(c.c))
}