コード例 #1
0
ファイル: cursor.go プロジェクト: quarnster/go-clang
// 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)}
}