Exemplo n.º 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}
}
Exemplo n.º 2
0
// Retrieve the file that is included by the given inclusion directive cursor.
func (c Cursor) IncludedFile() File {
	return File{C.clang_getIncludedFile(c.c)}
}