/usr/include/ncarg/hlu/PSWorkstation.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 | /*
* $Id: PSWorkstation.h,v 1.6 2003-02-27 18:14:35 grubin Exp $
*/
/************************************************************************
* *
* Copyright (C) 1995 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: PSWorkstation.h
*
* Author: Jeff W. Boote
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Fri Mar 24 00:33:23 MST 1995
*
* Description:
*/
#ifndef _NPSWorkstation_h
#define _NPSWorkstation_h
#include <ncarg/hlu/Workstation.h>
/*
* See: Workstation.h for common/shared resources with PDF Workstation
*/
#define NhlNwkPSFormat "wkPSFormat"
#define NhlCwkPSFormat "WkPSFormat"
#define NhlNwkPSFileName "wkPSFileName"
#define NhlCwkPSFileName "WkPSFileName"
#define NhlNwkPSResolution "wkPSResolution"
#define NhlCwkPSResolution "WkPSResolution"
/*
* New Types.
*/
#define NhlTPSFormat "PSFormat"
typedef enum _NhlPSFormat{
NhlPS = 0,
NhlEPS = 1,
NhlEPSI = 2
} NhlPSFormat;
extern NhlClass NhlpsWorkstationClass;
#endif /* _NPSWorkstation_h */
|