mirror of
https://github.com/Unidata/netcdf-cxx4.git
synced 2024-11-21 03:13:46 +08:00
23 lines
386 B
C++
23 lines
386 B
C++
#include "ncShort.h"
|
|
#include "netcdf.h"
|
|
using namespace netCDF;
|
|
|
|
// create an instance of NcShort called netCDF::ncShort
|
|
namespace netCDF {
|
|
NcShort ncShort;
|
|
}
|
|
|
|
// constructor
|
|
NcShort::NcShort() : NcType(NC_SHORT){
|
|
}
|
|
|
|
NcShort::~NcShort() {
|
|
}
|
|
|
|
|
|
// equivalence operator
|
|
bool NcShort::operator==(const NcShort & rhs) {
|
|
// simply check the netCDF id.
|
|
return myId == rhs.myId;
|
|
}
|