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

31 lines
480 B
C++

#include "ncType.h"
#ifndef NcByteClass
#define NcByteClass
namespace netCDF
{
/*! Class represents a netCDF atomic Byte type. */
class NcByte : public NcType
{
public:
/*! equivalence operator */
bool operator==(const NcByte & rhs);
/*! storage size */
int sizeoff();
~NcByte();
/*! Constructor */
NcByte();
};
/*! A global instance of the NcByte class within the netCDF namespace. */
extern NcByte ncByte;
}
#endif