netcdf-cxx4/cxx4/ncUshort.h
Ed Hartnett 965b61a671 new
2011-08-17 18:56:14 +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