/usr/include/ncarg/hlu/MapDataHandler.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 | /*
* $Id: MapDataHandler.h,v 1.1 1998-05-22 01:59:08 dbrown Exp $
*/
/************************************************************************
* *
* Copyright (C) 1992 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: MapDataHandler.h
*
* Author: David Brown
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Thu Apr 23 12:01:04 MDT 1998
*
* Description: This is the header file for the MapDataHandler class.
* MapDataHandler is a private class to be used by
* MapPlot internally. It has access to MapPlot's
* internal data structures; the reverse is not true
* however.
*/
#ifndef _NMapDataHandler_h
#define _NMapDataHandler_h
#include <ncarg/hlu/MapPlotP.h>
extern NhlErrorTypes _NhlUpdateDrawList(
#if NhlNeedProto
NhlLayer instance,
NhlBoolean init,
NhlMapPlotLayer newmp,
NhlMapPlotLayer oldmp,
_NhlArgList args,
int num_args
#endif
);
extern NhlErrorTypes _NhlDrawMapList(
#if NhlNeedProto
NhlLayer instance,
NhlMapPlotLayer mp,
mpDrawOp draw_op,
NhlBoolean init_draw
#endif
);
extern NhlClass NhlmapDataHandlerClass;
#endif /*_NMapDataHandler_h*/
|