mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
29 lines
472 B
C++
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
|