NetCDF-C++ 4.3.1
ncByte.cpp
1#include "ncByte.h"
2#include "netcdf.h"
3using namespace netCDF;
4
5// create an instance of NcByte called netCDF::ncByte
6namespace netCDF {
8}
9
10// constructor
11NcByte::NcByte() : NcType(NC_BYTE){
12}
13
14NcByte::~NcByte() {
15}
16
17int NcByte::sizeoff(){char a;return sizeof(a);};
18
19
20// equivalence operator
21bool NcByte::operator==(const NcByte & rhs) {
22 // simply check the netCDF id.
23 return myId == rhs.myId;
24}
Class represents a netCDF atomic Byte type.
Definition: ncByte.h:11
bool operator==(const NcByte &rhs)
equivalence operator
Definition: ncByte.cpp:21
int sizeoff()
storage size
Definition: ncByte.cpp:17
Base class inherited by NcOpaque, NcVlen, NcCompound and NcEnum classes.
Definition: ncType.h:15
nc_type myId
the type Id
Definition: ncType.h:149
C++ API for netCDF4.
Definition: ncAtt.h:10
NcByte ncByte
A global instance of the NcByte class within the netCDF namespace.
Definition: ncByte.cpp:7

Return to the Main Unidata NetCDF page.
Generated on Wed Nov 10 2021 15:25:08 for NetCDF-C++. NetCDF is a Unidata library.