/usr/include/ncarg/hlu/DataMgrF.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 | /*
* $Id: DataMgrF.h,v 1.6 1995-12-19 20:39:05 boote Exp $
*/
/************************************************************************
* *
* Copyright (C) 1993 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: DataMgrF.h
*
* Author: Jeff W. Boote
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Fri Jul 9 12:52:23 MDT 1993
*
* Description: This file contains all the declarations that are
* needed for "friend" classes of the DataMgr. At
* this time it should only be included by DataComm.c,
* DataItem.c and DataMgr.c (of course).
*/
#ifndef _NDataMgrF_H
#define _NDataMgrF_H
#include <ncarg/hlu/DataMgr.h>
/*
* Private API to be used by the DataComm class only.
*/
extern _NhlDHandle _NhlInitDataConnection(
#if NhlNeedProto
NhlLayer item, /* DataItem sub-class */
NhlLayer dcomm, /* datacomm layer */
NrmQuark res_name, /* resource name */
NrmQuark *type_req, /* array of type wanted */
NrmQuark *type_ret /* type will be created */
#endif
);
extern NhlLayer _NhlRetrieveData(
#if NhlNeedProto
NhlLayer item, /* dataItem sub-class */
_NhlDHandle dhandle, /* id for Connection */
NhlBoolean *new /* is data new/changed */
#endif
);
extern void _NhlCloseDataConnection(
#if NhlNeedProto
NhlLayer item, /* DataItem sub-class */
_NhlDHandle dhandle /* id for Connection */
#endif
);
/*
* Private API to be used by the DataItem class only.
*/
extern void _NhlDataItemModified(
#if NhlNeedProto
NhlLayer mgr /* DataMgr */
#endif
);
extern NhlErrorTypes _NhlNotifyDataComm(
#if NhlNeedProto
NhlLayer mgr /* DataMgr */
#endif
);
#endif /* _NDataMgrF_H */
|