/usr/include/ncarg/hlu/DataItemP.h is in libncarg-dev 6.1.2-7.
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 | /*
* $Id: DataItemP.h,v 1.6 1995-04-07 10:41:35 boote Exp $
*/
/************************************************************************
* *
* Copyright (C) 1993 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: DataItemP.h
*
* Author: Jeff W. Boote
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Thu Jun 24 10:19:49 MDT 1993
*
* Description: Private declarations for the DataItem class.
*/
#ifndef _NDataItemP_h
#define _NDataItemP_h
#include <ncarg/hlu/BaseP.h>
#include <ncarg/hlu/DataItem.h>
#include <ncarg/hlu/DataMgr.h>
#define NhlNnoManager "no.Manager"
#define NhlCnoManager "No.Manager"
typedef struct _NhlDataItemLayerPart{
/* User setable resource fields */
/*
* type converter setable fields - this resource is setable
* programatically only - and only by things that include the P.h file
*/
NhlBoolean no_manager;
/*
* Can't even do missing val's or min, max - because we don't know
* what type the data is yet. - I guess it will have to be in
* the sub-class. Perhaps we need to define the Resource names
* in the public.h file so they at least all use the same name.
*/
/* Private Fields */
NhlLayer manager;
NhlBoolean change_called;
} NhlDataItemLayerPart;
typedef struct _NhlDataItemLayerRec{
NhlBaseLayerPart base;
NhlDataItemLayerPart dataitem;
} NhlDataItemLayerRec;
typedef struct _NhlDataItemClassPart{
int foo;
} NhlDataItemClassPart;
typedef struct _NhlDataItemClassRec{
NhlBaseClassPart base_class;
NhlDataItemClassPart dataitem_class;
} NhlDataItemClassRec;
typedef struct _NhlDataItemClassRec *NhlDataItemClass;
typedef struct _NhlDataItemLayerRec *NhlDataItemLayer;
extern NhlDataItemClassRec NhldataItemClassRec;
/*
* Private API for DataItem sub-classes
*/
extern void _NhlDataChanged(
#if NhlNeedProto
NhlDataItemLayer l,
NhlBoolean status
#endif
);
#endif /* _NDataItemP_h */
|