netcdf-cxx4/cxx4/ncShort.h
Ed Hartnett 965b61a671 new
2011-08-17 18:56:14 +00:00

29 lines
472 B
C++

#include "ncType.h"
#ifndef NcShortClass
#define NcShortClass
namespace netCDF
{
/*! Class represents a netCDF atomic Short type. */
class NcShort : public NcType
{
public:
/*! equivalence operator */
bool operator==(const NcShort & rhs);
/*! destructor */
~NcShort();
/*! Constructor */
NcShort();
};
/*! A global instance of the NcShort class within the netCDF namespace. */
extern NcShort ncShort;
}
#endif