mirror of
https://github.com/Unidata/netcdf-cxx4.git
synced 2024-11-21 03:13:46 +08:00
29 lines
482 B
C++
29 lines
482 B
C++
#include "ncType.h"
|
|
|
|
#ifndef NcStringClass
|
|
#define NcStringClass
|
|
|
|
namespace netCDF
|
|
{
|
|
|
|
/*! Class represents a netCDF atomic String type. */
|
|
class NcString : public NcType
|
|
{
|
|
public:
|
|
|
|
/*! equivalence operator */
|
|
bool operator==(const NcString & rhs);
|
|
|
|
/*! destructor */
|
|
~NcString();
|
|
|
|
/*! Constructor */
|
|
NcString();
|
|
};
|
|
|
|
/*! A global instance of the NcString class within the netCDF namespace. */
|
|
extern NcString ncString;
|
|
|
|
}
|
|
#endif
|