Previous: Class Hierarchy, Up: Introduction
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 a typedef for signed char
.