netcdf-c/cxx4/ncUint.h
2010-06-03 13:25:11 +00:00

29 lines
462 B
C++

#include "ncType.h"
#ifndef NcUintClass
#define NcUintClass
namespace netCDF
{
/*! Class represents a netCDF atomic Uint type. */
class NcUint : public NcType
{
public:
/*! equivalence operator */
bool operator==(const NcUint & rhs);
/*! destructor */
~NcUint();
/*! Constructor */
NcUint();
};
/*! A global instance of the NcUint class within the netCDF namespace. */
extern NcUint ncUint;
}
#endif