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