/usr/include/ncarg/ncl/NclAtt.h is in libncarg-dev 6.3.0-13.
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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | /*
 *      $Id: NclAtt.h,v 1.3 1996-07-16 20:58:16 ethan Exp $
 */
/************************************************************************
*									*
*			     Copyright (C)  1994			*
*	     University Corporation for Atmospheric Research		*
*			     All Rights Reserved			*
*									*
************************************************************************/
/*
 *	File:		
 *
 *	Author:		Ethan Alpert
 *			National Center for Atmospheric Research
 *			PO 3000, Boulder, Colorado
 *
 *	Date:		Thu Jan 13 15:04:41 MST 1994
 *
 *	Description:	
 */
#ifndef NclAtt_h
#define NclAtt_h
#include "NclData.h"
typedef struct _NclAttRec *NclAtt;
typedef struct _NclAttClassRec *NclAttClass;
typedef NhlErrorTypes (*NclAddAttFunction) (
#if 	NhlNeedProto
NclAtt /*theattobj*/,
char *  /*attname*/,
NclMultiDValData  /*value*/,
NclSelectionRecord * /*sel_ptr*/
#endif
);
typedef struct _NclMultiDValDataRec * (*NclGetAttFunction) (
#if NhlNeedProto
NclAtt /*theattobj*/,
char *  /*attname*/,
NclSelectionRecord * /*sel_ptr*/
#endif
);
typedef int (*NclIsAttFunction) (
#if NhlNeedProto
NclAtt	/*theattobj*/,
char *  /*attname*/
#endif
);
typedef void (*NclDelAttFunction) (
#if  NhlNeedProto
NclAtt	/* theattobj*/,
char 	* /*attname*/
#endif
);
typedef void (*NclAttPrintFunction)(
#if  NhlNeedProto
NclAtt /*theattobj*/,
FILE * /*fp*/
#endif
);
typedef struct _NclAttRec * (*NclCopyAttFunction) (
#if   NhlNeedProto
NclAtt /*theattobj*/,
NclAtt /*storage*/
#endif
);
extern int _NclAttCreate(
#if	NhlNeedProto
	struct _NclObjRec *	/* int */,
	struct _NclObjClassRec *	/* theclass */,
	NclObjTypes 	/* obj_type */,
	unsigned int 	/* obj_type_mask */,
	struct _NclObjRec *	/* parent */
#endif
);
typedef struct _NclAttList {
	int	quark;
	char	*attname;
	NclMultiDValData attvalue;
	_NhlCB	cb;
	struct _NclAttList *next;
}NclAttList;
typedef struct _NclAttClassPart {
	NclAddAttFunction	add_att;
	NclGetAttFunction	get_att;
	NclDelAttFunction	del_att;
	NclIsAttFunction	is_att;
	NclCopyAttFunction	copy_att;
} NclAttClassPart;
typedef struct _NclAttPart {
	int				n_atts;
	NclAttList			*att_list;
}NclAttPart;
 
typedef struct _NclAttClassRec{
	NclObjClassPart	obj_class;
	NclAttClassPart att_class;
}NclAttClassRec;
typedef struct _NclAttRec {
	NclObjPart      obj;
	NclAttPart	att;
}NclAttRec;
extern NclObjClass nclAttClass;
extern NclAttClassRec nclAttClassRec;
#endif /* NclAtt_h */
 |