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

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