00001 /********************************************************************* 00002 * Copyright 1993, UCAR/Unidata 00003 * See netcdf/COPYRIGHT file for copying and redistribution conditions. 00004 * $Header: /upc/share/CVS/netcdf-3/ncgen/generic.h,v 1.3 1997/04/07 17:23:12 russ Exp $ 00005 *********************************************************************/ 00006 00007 #ifndef UD_GENERIC_H 00008 #define UD_GENERIC_H 00009 00010 union generic { /* used to hold any kind of fill_value */ 00011 float floatv; 00012 double doublev; 00013 int intv; 00014 short shortv; 00015 char charv; 00016 }; 00017 00018 #endif
1.4.4