netcdf-cxx4/cxx4/ncString.h

29 lines
482 B
C
Raw Normal View History

2011-08-18 02:56:14 +08:00
#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