mirror of
https://github.com/Unidata/netcdf-cxx4.git
synced 2024-11-27 07:49:52 +08:00
29 lines
472 B
C++
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
|