This file is indexed.

/usr/include/ncarg/hlu/GraphicStyleP.h is in libncarg-dev 6.2.0-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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
 *      $Id: GraphicStyleP.h,v 1.1 1996-02-26 21:45:54 dbrown Exp $
 */
/************************************************************************
*									*
*			     Copyright (C)  1992			*
*	     University Corporation for Atmospheric Research		*
*			     All Rights Reserved			*
*									*
************************************************************************/
/*
 *	File:		GraphicStyleP.h
 *
 *	Author:		David Brown
 *			National Center for Atmospheric Research
 *			PO 3000, Boulder, Colorado
 *
 *	Date:		Tue Feb 20 18:10:29 MST 1996
 *
 *	Description:	Private header file for GraphicStyle class
 */
#ifndef _NGRAPHICSTYLEP_h
#define _NGRAPHICSTYLEP_h

#include <ncarg/hlu/StyleP.h>
#include <ncarg/hlu/GraphicStyle.h>
#include <ncarg/hlu/SubStylesP.h>

/* private resource */

typedef struct _NhlGraphicStyleLayerPart{

	NhlBoolean      clip_on;
	NhlGenArray     colors;
	NhlGenArray     segments;

	/* private fields */

	int		line_style_id;
	int		fill_style_id;
	int		edge_style_id;
	int		marker_style_id;
	int		text_style_id;

}NhlGraphicStyleLayerPart;

typedef struct _NhlGraphicStyleLayerRec{
	NhlBaseLayerPart		base;
	NhlStyleLayerPart		style;
	NhlGraphicStyleLayerPart	graphicstyle;
}NhlGraphicStyleLayerRec;

typedef struct _NhlGraphicStyleClassPart {
	char *foo;
}NhlGraphicStyleClassPart;

typedef struct _NhlGraphicStyleClassRec{
	NhlBaseClassPart		base_class;
	NhlStyleClassPart		style_class;
	NhlGraphicStyleClassPart	graphicstyle_class;
}NhlGraphicStyleClassRec;

typedef struct _NhlGraphicStyleClassRec	*NhlGraphicStyleClass;
typedef struct _NhlGraphicStyleLayerRec	*NhlGraphicStyleLayer;

extern NhlGraphicStyleClassRec		NhlgraphicStyleClassRec;

#endif  /*_NGRAPHICSTYLEP_h*/