예제 #1
0
// IncludedFile returns the file that is included by the given inclusion directive
func (c Cursor) IncludedFile() File {
	o := C.clang_getIncludedFile(c.c)
	return File{o}
}
예제 #2
0
파일: cursor_gen.go 프로젝트: go-clang/v3.6
// Retrieve the file that is included by the given inclusion directive cursor.
func (c Cursor) IncludedFile() File {
	return File{C.clang_getIncludedFile(c.c)}
}