/usr/include/ncarg/hlu/LogLinPlotP.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 | /*
* $Id: LogLinPlotP.h,v 1.6 1996-10-31 23:06:24 dbrown Exp $
*/
/************************************************************************
* *
* Copyright (C) 1992 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: LogLinPlotP.h
*
* Author: David Brown
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Fri Oct 2 15:01:59 MDT 1992
*
* Description: Generic Log-Linear plot object
*/
#ifndef _NLogLinPlotP_h
#define _NLogLinPlotP_h
#include <ncarg/hlu/TransformP.h>
#include <ncarg/hlu/LogLinTransObjP.h>
#include <ncarg/hlu/LogLinPlot.h>
typedef struct NhlLogLinPlotLayerPart {
/* Public resources */
/* Private resources */
NhlBoolean update_req;
/* Private Fields */
int trans_change_count;
NhlLayer overlay_object;
} NhlLogLinPlotLayerPart;
typedef struct _NhlLogLinPlotLayerRec {
NhlBaseLayerPart base;
NhlViewLayerPart view;
NhlTransformLayerPart trans;
NhlLogLinPlotLayerPart llplot;
} NhlLogLinPlotLayerRec;
typedef struct NhlLogLinPlotClassPart{
void *foo;
} NhlLogLinPlotClassPart;
typedef struct _NhlLogLinPlotClassRec{
NhlBaseClassPart base_class;
NhlViewClassPart view_class;
NhlTransformClassPart trans_class;
NhlLogLinPlotClassPart llplot_class;
} NhlLogLinPlotClassRec;
typedef struct _NhlLogLinPlotClassRec *NhlLogLinPlotClass;
typedef struct _NhlLogLinPlotLayerRec *NhlLogLinPlotLayer;
extern NhlLogLinPlotClassRec NhllogLinPlotClassRec;
#endif /* _NLogLinPlotP_h */
|