Next: Class NcError, Previous: Auxiliary Classes, Up: Auxiliary Classes
Class NcValues
is an abstract base class for a block of typed
values. The derived classes are NcValues_ncbyte
,
NcValues_char
, NcValues_short
, NcValues_int
,
NcValues_nclong
(deprecated), and NcValues_long
,
NcValues_float
, NcValues_double
.
These classes are used as the return type of the
NcTypedComponent::values()
member function, for typed-value
arrays associated with variables and attributes.
NcValues( void )
NcValues(NcType, long)
~NcValues( void )
long num( void )
ostream& print(ostream&) const
void* base( void ) const
int bytes_for_one( void ) const
ncbyte as_ncbyte( int n ) const
char as_char( int n ) const
short as_short( int n ) const
int as_int( int n ) const
nclong as_nclong( int n ) const // deprecated
long as_long( int n ) const
float as_float( int n ) const
double as_double( int n ) const
char* as_string( int n ) const
as_string
method.