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

29 lines
453 B
C++

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