diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2014-04-01 05:59:37 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2014-04-01 05:59:37 (GMT) |
commit | 0fcac5670573e802100c2a099cdc6eb8af229d12 (patch) | |
tree | ea32d7a50dd8daa24f72d90333ea08e9ab3aca61 /c++/src/H5Attribute.h | |
parent | d01ee66666f4cad8e5f3f67a51a5774adcc03e45 (diff) | |
download | hdf5-0fcac5670573e802100c2a099cdc6eb8af229d12.zip hdf5-0fcac5670573e802100c2a099cdc6eb8af229d12.tar.gz hdf5-0fcac5670573e802100c2a099cdc6eb8af229d12.tar.bz2 |
[svn-r24938] Description:
- Overloaded Atribute::getName to take a char* for the attribute name:
ssize_t Attribute::getName(char* attr_name, size_t buf_size)
- Switched the arguments in this function:
ssize_t getName(size_t buf_size, H5std_string& attr_name)
so it became:
ssize_t getName(H5std_string& attr_name, size_t buf_size)
The second argument is default to 0, and can be skipped.
- Removed this function:
H5std_string getName(size_t buf_size); it'll collide with the
first function when that function takes a NULL for the first
argument, and uses default value for the second argument.
- Added more tests
Platforms tested:
Linux/ppc64 (ostrich)
Linux/32 2.6 (jam)
SunOS 5.11 (emu)
Diffstat (limited to 'c++/src/H5Attribute.h')
-rw-r--r-- | c++/src/H5Attribute.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/c++/src/H5Attribute.h b/c++/src/H5Attribute.h index 4f15c7f..8332632 100644 --- a/c++/src/H5Attribute.h +++ b/c++/src/H5Attribute.h @@ -38,9 +38,9 @@ class H5_DLLCPP Attribute : public AbstractDs, public IdComponent { H5std_string getFileName() const; // Gets the name of this attribute. - ssize_t getName( size_t buf_size, H5std_string& attr_name ) const; - H5std_string getName( size_t buf_size ) const; // returns name, not its length - H5std_string getName() const; // returns name, no argument + ssize_t getName(char* attr_name, size_t buf_size = 0) const; + ssize_t getName(H5std_string& attr_name, size_t buf_size = 0) const; + H5std_string getName() const; // Gets a copy of the dataspace for this attribute. virtual DataSpace getSpace() const; |