/usr/include/ncarg/hlu/MapDataHandlerP.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 | /*
* $Id: MapDataHandlerP.h,v 1.2 1998-11-12 21:40:02 dbrown Exp $
*/
/************************************************************************
* *
* Copyright (C) 1992 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: MapDataHandlerP.h
*
* Author: David I. Brown
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Thu Apr 23 12:01:04 MDT 1998
*
* Description:
*/
#ifndef _NMapDataHandlerP_h
#define _NMapDataHandlerP_h
#include <ncarg/hlu/MapDataHandler.h>
typedef enum _mdhCompType {
mdhSTRCMP,mdhSTRNCMP,mdhSTRSTR,mdhSTRSTREND
} mdhCompType;
typedef struct _NhlMapDataHandlerLayerPart {
NhlGenArray area_names;
NhlGenArray area_types;
NhlGenArray dynamic_groups;
NhlGenArray fixed_groups;
int area_group_count;
}NhlMapDataHandlerLayerPart;
typedef struct _NhlMapDataHandlerLayerRec {
NhlObjLayerPart base;
NhlMapDataHandlerLayerPart mapdh;
}NhlMapDataHandlerLayerRec;
typedef NhlErrorTypes (*NhlUpdateDrawList)(
#if NhlNeedProto
NhlLayer instance,
NhlBoolean init,
NhlMapPlotLayer newmp,
NhlMapPlotLayer oldmp,
_NhlArgList args,
int num_args
#endif
);
typedef NhlErrorTypes (*NhlDrawMapList)(
#if NhlNeedProto
NhlLayer instance,
NhlMapPlotLayer mp,
mpDrawOp draw_op,
NhlBoolean init_draw
#endif
);
typedef struct _NhlMapDataHandlerClassPart {
NhlUpdateDrawList update_draw_list;
NhlDrawMapList draw_map_list;
} NhlMapDataHandlerClassPart;
typedef struct _NhlMapDataHandlerClassRec {
NhlObjClassPart base_class;
NhlMapDataHandlerClassPart mapdh_class;
} NhlMapDataHandlerClassRec;
typedef struct _NhlMapDataHandlerClassRec *NhlMapDataHandlerClass;
typedef struct _NhlMapDataHandlerLayerRec *NhlMapDataHandlerLayer;
extern NhlMapDataHandlerClassRec NhlmapDataHandlerClassRec;
#endif /*_NMapDataHandlerP_h*/
|