The netCDF classes use several auxiliary types for arguments and return
types from member functions: NcToken
, NcType
,
NcBool
, and ncbyte
.
NcToken
const char*
.
NcType
ncByte
,
ncChar
, ncShort
, ncInt
, ncLong
(deprecated),
ncFloat
, and ncDouble
.
NcBool
unsigned int
. It will be changed to
bool
when all C++ compilers support the new bool
type.
ncbyte
ncByte
, for 8-bit integer data.
(This is currently a typedef for unsigned char
, but it may be
changed to a typedef for signed char
, so don't depend on the
underlying representation.)