netcdf-cxx4/cxx4/ncChar.cpp
Ed Hartnett 965b61a671 new
2011-08-17 18:56:14 +00:00

23 lines
374 B
C++

#include "ncChar.h"
#include "netcdf.h"
using namespace netCDF;
// create an instance of NcChar called netCDF::ncChar
namespace netCDF {
NcChar ncChar;
}
// constructor
NcChar::NcChar() : NcType(NC_CHAR){
}
NcChar::~NcChar() {
}
// equivalence operator
bool NcChar::operator==(const NcChar & rhs) {
// simply check the netCDF id.
return myId == rhs.myId;
}