summaryrefslogtreecommitdiffstats
path: root/c++/src/H5DataType.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2004-05-18 04:46:27 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2004-05-18 04:46:27 (GMT)
commitd15b6b8d63b44c09a82ae020ca6d574f277289c7 (patch)
treef37a1d5895da9a05969f25db226fb084cf4bb53f /c++/src/H5DataType.h
parent458584b6b2385e53645a458aedea0037430b9bf2 (diff)
downloadhdf5-d15b6b8d63b44c09a82ae020ca6d574f277289c7.zip
hdf5-d15b6b8d63b44c09a82ae020ca6d574f277289c7.tar.gz
hdf5-d15b6b8d63b44c09a82ae020ca6d574f277289c7.tar.bz2
[svn-r8537] Purpose:
Add more C++ wrapper - incrementally check-in Description: Added wrapper for H5Tis_variable_str to DataType class. Tests for the new wrappers will follow in a few weeks. Platforms: SunOS 5.7 (arabica) Linux 2.4 (eirene) Windows 2000 Misc. update:
Diffstat (limited to 'c++/src/H5DataType.h')
-rw-r--r--c++/src/H5DataType.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/c++/src/H5DataType.h b/c++/src/H5DataType.h
index 6d49f7b..24b7ba3 100644
--- a/c++/src/H5DataType.h
+++ b/c++/src/H5DataType.h
@@ -81,12 +81,11 @@ class H5_DLLCPP DataType : public H5Object {
// Gets the tag associated with an opaque datatype.
string getTag() const;
- // Checks whether this datatype contains (or is) a certain type class
+ // Checks whether this datatype contains (or is) a certain type class.
bool detectClass(H5T_class_t cls) const;
- // Creates a new variable-length datatype - not implemented yet
- // Will be moved into a subclass when completed
- //DataType vlenCreate( const DataType& base_type );
+ // Checks whether this datatype is a variable-length string.
+ bool isVariableStr() const;
// Used by the API to appropriately close a datatype
void p_close() const;