/usr/include/ncarg/hlu/PrimitiveP.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 | /*
* $Id: PrimitiveP.h,v 1.1 2000-06-28 19:04:00 dbrown Exp $
*/
/************************************************************************
* *
* Copyright (C) 1992 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: PrimitiveP.h
*
* Author: David Brown
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Wed Jun 21 17:04:23 MDT 2000
*
* Description: Private header file for Primitive class
*/
#ifndef _NPRIMITIVEP_h
#define _NPRIMITIVEP_h
#include <ncarg/hlu/BaseP.h>
#include <ncarg/hlu/Primitive.h>
typedef struct _NhlPrimitiveLayerPart{
/* public resource fields */
NhlGenArray x_arr;
NhlGenArray y_arr;
NhlPolyType poly_type;
NhlLayer graphic_style;
}NhlPrimitiveLayerPart;
typedef struct _NhlPrimitiveLayerRec{
NhlObjLayerPart base;
NhlPrimitiveLayerPart primitive;
}NhlPrimitiveLayerRec;
typedef struct _NhlPrimitiveClassPart {
char *foo;
}NhlPrimitiveClassPart;
typedef struct _NhlPrimitiveClassRec{
NhlObjClassPart base_class;
NhlPrimitiveClassPart primitive_class;
}NhlPrimitiveClassRec;
typedef struct _NhlPrimitiveClassRec *NhlPrimitiveClass;
typedef struct _NhlPrimitiveLayerRec *NhlPrimitiveLayer;
extern NhlPrimitiveClassRec NhlprimitiveClassRec;
#endif /*_NPRIMITIVEP_h*/
|