/usr/include/ncarg/hlu/DataComm.h is in libncarg-dev 6.2.0-3+b1.
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 | /*
* $Id: DataComm.h,v 1.17 2007-10-29 22:06:51 dbrown Exp $
*/
/************************************************************************
* *
* Copyright (C) 1993 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: DataComm.h
*
* Author: Jeff W. Boote
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Wed Jun 16 17:45:07 MDT 1993
*
* Description: Public header file for the DataComm class.
*/
#ifndef _NDataComm_h
#define _NDataComm_h
#include <ncarg/hlu/Transform.h>
#define NhlNdcDelayCompute "dcDelayCompute"
#define NhlCdcDelayCompute "DcDelayCompute"
/* Level selection modes */
typedef enum _NhlLevelSelectionMode {
NhlAUTOMATICLEVELS = 0,
NhlMANUALLEVELS = 1,
NhlEXPLICITLEVELS = 2,
NhlEQUALSPACEDLEVELS = 3
} NhlLevelSelectionMode;
#define NhlTLevelSelectionMode "LevelSelectionMode"
/* Scaling mode */
typedef enum _NhlScalingMode {
NhlSCALEFACTOR = 0,
NhlCONFINETORANGE = 1,
NhlTRIMZEROS = 2,
NhlMAXSIGDIGITSLEFT = 3,
NhlALLINTEGERS = 4,
NhlINTEGERLINELABELS = 4 /* Obsolete synonym */
} NhlScalingMode;
#define NhlTScalingMode "ScalingMode"
typedef enum _NhlLabelBarEndStyle {
NhlINCLUDEOUTERBOXES,
NhlINCLUDEMINMAXLABELS,
NhlEXCLUDEOUTERBOXES
} NhlLabelBarEndStyle;
#define NhlTLabelBarEndStyle "LabelBarEndStyle"
/*
* Class declarations
*/
extern NhlClass NhldataCommClass;
extern NhlClass NhldataSpecClass;
/*
* Public API
*/
extern NhlErrorTypes NhlUpdateData(
#if NhlNeedProto
int dcommid /* id of dcomm object */
#endif
);
extern int NhlAddData(
#if NhlNeedProto
int dcommid, /* id of layer w/ data resource */
NhlString res_name, /* name of data resource */
int ditemid /* id of data to add */
#endif
);
extern NhlErrorTypes NhlRemoveData(
#if NhlNeedProto
int dcommid, /* id of layer w/ data resource */
NhlString res_name, /* name of data resource */
int ditemid /* id of data item to remove */
#endif
);
extern NhlBoolean NhlIsDataComm(
#if NhlNeedProto
int pid
#endif
);
extern NhlBoolean NhlIsDataSpec(
#if NhlNeedProto
int pid
#endif
);
/* Common class resources */
#define NhlCLevelSelectionMode "LevelSelectionMode"
#define NhlCMaxLevelCount "MaxLevelCount"
#define NhlCLevelSpacingF "LevelSpacingF"
#define NhlCMinLevelValF "MinLevelValF"
#define NhlCMaxLevelValF "MaxLevelValF"
#define NhlCLevels "Levels"
#endif /*_NDataComm_h */
|