mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
31 lines
480 B
C++
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
|