summaryrefslogtreecommitdiffstats
path: root/c++/src/H5StrType.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2005-12-05 20:23:12 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2005-12-05 20:23:12 (GMT)
commit11d013f8ccd95d7a5511260fad585ea6a039eac4 (patch)
treeda7c8eff13f9d09d1a96456da8935d346920df66 /c++/src/H5StrType.h
parente969226fc701d06fc3e6e4b312c6bd77395b76d3 (diff)
downloadhdf5-11d013f8ccd95d7a5511260fad585ea6a039eac4.zip
hdf5-11d013f8ccd95d7a5511260fad585ea6a039eac4.tar.gz
hdf5-11d013f8ccd95d7a5511260fad585ea6a039eac4.tar.bz2
[svn-r11762] Purpose: Adding more wrappers
Description: Added member function H5File::openFile and overloaded for convenience. Added overloaded getObjinfo to skip the middle parameter. Changed StrType(const size_t& size); to StrType(const int dummy, const size_t& size); because the first one clashed with StrType(const hid_t existing_id); Platforms tested: Linux 2.4 (heping) SunOS 5.8 64-bit (sol) HPUX 11.00 (kelgia)
Diffstat (limited to 'c++/src/H5StrType.h')
-rw-r--r--c++/src/H5StrType.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/c++/src/H5StrType.h b/c++/src/H5StrType.h
index 9bf3f93..80ebbe4 100644
--- a/c++/src/H5StrType.h
+++ b/c++/src/H5StrType.h
@@ -25,12 +25,12 @@ class H5_DLLCPP StrType : public AtomType {
// Creates a string type using a predefined type
StrType(const PredType& pred_type);
- // Creates a string type with specified length
- StrType(const size_t& size);
-
- // Creates a string type with specified length - will be obsolete
+ // Creates a string type with specified length - may be obsolete
StrType(const PredType& pred_type, const size_t size);
+ // Creates a string type with specified length
+ StrType(const int dummy, const size_t& size);
+
// Gets the string datatype of the specified dataset
StrType(const DataSet& dataset);