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

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