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

29 lines
472 B
C++

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