This file is indexed.

/usr/include/ossim/vpfutil/vpfselec.h is in libossim-dev 1.8.16-3+b1.

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
41
/* VPFSELEC.H - SELECT VPF FEATURES */

#ifndef __VPFSELEC_H__

#define __VPFSELEC_H__ 1

#ifdef __cplusplus
extern "C" {
#endif

set_type read_selected_features( view_type *view, int themenum );

void save_selected_features( view_type *view, int themenum,
			     set_type selset );

set_type get_selected_features( view_type *view, int themenum,
				library_type library );

set_type bounding_select( char *path, extent_type mapextent,
			  int dec_degrees );

#ifndef __MSDOS__
int completely_within( extent_type extent1, extent_type extent2 );
#endif

set_type *get_selected_primitives( view_type *view, int themenum,
				   library_type *library,
				   map_environment_type *mapenv,
				   int *status );

int draw_selected_features( view_type *view,
			    int themenum,
			    library_type *library,
			    map_environment_type *mapenv );


#ifdef __cplusplus
}
#endif

#endif