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

23 lines
386 B
C++

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