/usr/include/ncarg/ncl/NclCoordVar.h is in libncarg-dev 6.4.0-9.
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: NclCoordVar.h,v 1.2 1995-01-28 01:51:14 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 NclCoordVar_h
#define NclCoordVar_h
#include "NclVar.h"
typedef struct _NclCoordVarClassPart {
char *foo;
} NclCoordVarClassPart;
typedef struct _NclCoordVarPart {
char *foo;
}NclCoordVarPart;
typedef struct _NclCoordVarClassRec{
NclObjClassPart obj_class;
NclVarClassPart var_class;
NclCoordVarClassPart hvar_class;
}NclCoordVarClassRec;
typedef struct _NclCoordVarRec {
NclObjPart obj;
NclVarPart var;
NclCoordVarPart hvar;
}NclCoordVarRec;
typedef NclCoordVarRec *NclCoordVar;
typedef NclCoordVarClassRec *NclCoordVarClass;
extern NclObjClass nclCoordVarClass;
extern NclCoordVarClassRec nclCoordVarClassRec;
extern struct _NclVarRec *_NclCoordVarCreate(
#if NhlNeedProto
struct _NclVarRec * /* inst */,
struct _NclObjClassRec * /* theclass */,
NclObjTypes /* obj_type */,
unsigned int /* obj_type_mask */,
struct _NclSymbol * /* thesym */,
struct _NclMultiDValDataRec * /* value */,
struct _NclDimRec * /*dim_info*/,
int /*att_id*/,
int* /*coords*/,
NclVarTypes /* var_type */,
char * /*var_name*/,
NclStatus /* status */
#endif
);
#endif /* NclCoordVar_h */
|