netcdf-c/cxx4/ncInt.h
2010-06-03 13:25:11 +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