This file is indexed.

/usr/lib/vtk-5.8/vtkGenericFilteringKit.cmake is in libvtk5-dev 5.8.0-14.1ubuntu3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Directory containing class headers.
SET(VTK_GENERIC_FILTERING_HEADER_DIR "${VTK_INSTALL_PREFIX}/include/vtk-5.8")

# Classes in vtkGenericFiltering.
SET(VTK_GENERIC_FILTERING_CLASSES
  "vtkGenericContourFilter"
  "vtkGenericGeometryFilter"
  "vtkGenericClip"
  "vtkGenericProbeFilter"
  "vtkGenericDataSetTessellator"
  "vtkGenericCutter"
  "vtkGenericGlyph3DFilter"
  "vtkGenericStreamTracer"
  "vtkGenericOutlineFilter")

# Abstract classes in vtkGenericFiltering.
SET(VTK_GENERIC_FILTERING_CLASSES_ABSTRACT)

# Wrap-exclude classes in vtkGenericFiltering.
SET(VTK_GENERIC_FILTERING_CLASSES_WRAP_EXCLUDE)

# Wrap-special classes in vtkGenericFiltering.
SET(VTK_GENERIC_FILTERING_CLASSES_WRAP_SPECIAL)

# Wrappable non-class headers for vtkGenericFiltering.
SET(VTK_GENERIC_FILTERING_WRAP_HEADERS)

# Set convenient variables to test each class.
FOREACH(class ${VTK_GENERIC_FILTERING_CLASSES})
  SET(VTK_CLASS_EXISTS_${class} 1)
ENDFOREACH(class)
FOREACH(class ${VTK_GENERIC_FILTERING_CLASSES_ABSTRACT})
  SET(VTK_CLASS_ABSTRACT_${class} 1)
ENDFOREACH(class)
FOREACH(class ${VTK_GENERIC_FILTERING_CLASSES_WRAP_EXCLUDE})
  SET(VTK_CLASS_WRAP_EXCLUDE_${class} 1)
ENDFOREACH(class)
FOREACH(class ${VTK_GENERIC_FILTERING_CLASSES_WRAP_SPECIAL})
  SET(VTK_CLASS_WRAP_SPECIAL_${class} 1)
ENDFOREACH(class)