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

28 lines
440 B
C++

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