mirror of
https://github.com/Unidata/netcdf-cxx4.git
synced 2024-11-21 03:13:46 +08:00
29 lines
469 B
C++
29 lines
469 B
C++
#include "ncType.h"
|
|
|
|
#ifndef NcUshortClass
|
|
#define NcUshortClass
|
|
|
|
namespace netCDF
|
|
{
|
|
|
|
/*! Class represents a netCDF atomic Ushort type. */
|
|
class NcUshort : public NcType
|
|
{
|
|
public:
|
|
|
|
/*! equivalence operator */
|
|
bool operator==(const NcUshort & rhs);
|
|
|
|
/*! destructor */
|
|
~NcUshort();
|
|
|
|
/*! Constructor */
|
|
NcUshort();
|
|
};
|
|
|
|
// declare that the class instance ncUshort is known by all....
|
|
extern NcUshort ncUshort;
|
|
|
|
}
|
|
#endif
|