This file is indexed.

/usr/include/ncarg/hlu/MultiText.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
69
70
/*
 *      $Id: MultiText.h,v 1.6 2001-12-05 00:19:04 dbrown Exp $
 */
/************************************************************************
*									*
*			     Copyright (C)  1992			*
*	     University Corporation for Atmospheric Research		*
*			     All Rights Reserved			*
*									*
************************************************************************/
/*
 *	File:		MultiText.h
 *
 *	Author:		Jeff W. Boote
 *			National Center for Atmospheric Research
 *			PO 3000, Boulder, Colorado
 *
 *	Date:		Thu Dec 3 11:29:52 MST 1992
 *
 *	Description:	Public header file - for MultiText item.
 *			This object uses an internal TextItem child.
 */
#ifndef _NMultiText_h
#define _NMultiText_h

#include <ncarg/hlu/View.h>
#include <ncarg/hlu/TextItem.h>

/*
 * Resource name definitions
 */

#define NhlNMtextNumStrings	"mtext.NumStrings"
#define NhlCMtextNumStrings	"Mtext.NumStrings"
#define NhlNMtextStrings	"mtext.Strings"
#define NhlCMtextStrings	"Mtext.Strings"
#define NhlNMtextOrientation	"mtext.Orientation"
#define NhlCMtextOrientation	"Mtext.Orientation"
#define NhlNMtextConstPosF	"mtext.ConstPosF"
#define NhlCMtextConstPosF	"Mtext.ConstPosF"
#define NhlNMtextPosArray	"mtext.PosArray"
#define NhlCMtextPosArray	"Mtext.PosArray"
#define NhlNMtextMaxLenF	"mtext.MaxLenF"
#define NhlCMtextMaxLenF	"Mtext.MaxLenF"
#define NhlNMtextAutoStride	"mtext.AutoStride"
#define NhlCMtextAutoStride	"Mtext.AutoStride"
#define NhlNMtextKeepEndItems	"mtext.KeepEndItems"
#define NhlCMtextKeepEndItems	"Mtext.KeepEndItems"

/*
 * New type name definitions
 */

#define NhlTMTextOrientationType	"mtextOrientationType"

/*
 * Other new usefull definitions
 */
typedef enum _NhlMTextOrientatonType{
	NhlMTEXT_X_CONST,
	NhlMTEXT_Y_CONST
} NhlMTextOrientatonType;

/*
 * Definition and declaration of new class for global use
 */

extern NhlClass NhlmultiTextClass;

#endif  /* _NMultiText_h */