summaryrefslogtreecommitdiffstats
path: root/c++/src/H5AtomType.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2004-05-16 20:05:03 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2004-05-16 20:05:03 (GMT)
commitc56eb7f4a4e0ae5b41995850a4bcdb09adf73484 (patch)
tree2db091939eb6713b98123e7c20d12ce681b589bf /c++/src/H5AtomType.h
parent229cc3b8c064e6c63ba30587ff040e27e2073ac3 (diff)
downloadhdf5-c56eb7f4a4e0ae5b41995850a4bcdb09adf73484.zip
hdf5-c56eb7f4a4e0ae5b41995850a4bcdb09adf73484.tar.gz
hdf5-c56eb7f4a4e0ae5b41995850a4bcdb09adf73484.tar.bz2
[svn-r8532] Purpose:
Add more C++ wrappers and documentation - incrementally check-in Description: Added wrapper for: H5Tdetect_class Also, added Doxygen documentation to existing member functions of AtomType and DataType. Test for the new wrapper will follow in a few weeks. Some typos and small format changes are done in H5File.cpp. Platforms: SunOS 5.7 (arabica) Linux 2.4 (eirene) Windows 2000
Diffstat (limited to 'c++/src/H5AtomType.h')
-rw-r--r--c++/src/H5AtomType.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/c++/src/H5AtomType.h b/c++/src/H5AtomType.h
index 6217c8c..bb20bd3 100644
--- a/c++/src/H5AtomType.h
+++ b/c++/src/H5AtomType.h
@@ -48,12 +48,11 @@ class H5_DLLCPP AtomType : public DataType {
// Sets the bit offset of the first significant bit.
void setOffset( size_t offset ) const;
- // The followings will go into Opaque type when completed
// Retrieves the padding type of the least and most-significant bit padding.
- // void getPad( H5T_pad_t& lsb, H5T_pad_t& msb ) const;
+ void getPad( H5T_pad_t& lsb, H5T_pad_t& msb ) const;
// Sets the least and most-significant bits padding types
- // void setPad( H5T_pad_t lsb, H5T_pad_t msb ) const;
+ void setPad( H5T_pad_t lsb, H5T_pad_t msb ) const;
// Copy constructor - makes copy of the original object
AtomType( const AtomType& original );