summaryrefslogtreecommitdiffstats
path: root/c++/src/H5DxferProp.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2016-09-19 20:30:22 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2016-09-19 20:30:22 (GMT)
commit5ac0b328c8de74c11afb7aad7a5305389c70adaa (patch)
tree81bdef26f7c5a696fcacd5d824ef8abf97d80d2e /c++/src/H5DxferProp.h
parentc15d93826b1fee98dfebc9903808a3b8a29e9512 (diff)
parent2646f917adb5b2e17404260e433dc3ed7c39a602 (diff)
downloadhdf5-5ac0b328c8de74c11afb7aad7a5305389c70adaa.zip
hdf5-5ac0b328c8de74c11afb7aad7a5305389c70adaa.tar.gz
hdf5-5ac0b328c8de74c11afb7aad7a5305389c70adaa.tar.bz2
Merge pull request #32 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:evict_on_close to evict_on_close
Sync with develop and cleaned up feature. Feature works with datasets but testing is minimal. * commit '2646f917adb5b2e17404260e433dc3ed7c39a602': (102 commits) Cleaned up feature for dissemination to LLNL: - Removed support for datatypes. - Commented out support for groups - General change clean-up - Added a list of improvements to BRANCH.txt Removed blank line in Fortran file (leftover from last commit) Reverted H5T code since datatypes will not be supported at this time. Fixed format_convert and fortran files (bad merge?). Updated manifest. Was missing BRANCH.txt. Add missing command to set shared generated file Add default site names Separate fortran generation into static and shared folders. Revert to using old set command Change string to list - older usage Add option to submit to Cdash Change UPDATE_TYPE to git Update CMake java functions Added missing evict on close test file line to test/CMakeLists.txt. Restrict git commit hash in tar file names to first 7 characters with --short option. Add longer timeout to cache tests - test has consistently exceeded default timing. Removed -p option from invocation of autogen.sh by h5vers script to allow running h5vers on machines without /usr/hdf/bin/AUTOTOOLS. Add bin/pkgscrpts files to MANIFEST. dd bin/pkgscrpts directory with scripts to package deployed unix binaries into tarfiles. Purpose: Code cleanup Description: - Used FP_EPSILON in comparing float values to verify read data - Casted C macro to fix mismatched types in verify_val calls Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test) ...
Diffstat (limited to 'c++/src/H5DxferProp.h')
-rw-r--r--c++/src/H5DxferProp.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/c++/src/H5DxferProp.h b/c++/src/H5DxferProp.h
index 52a9a48..31fc372 100644
--- a/c++/src/H5DxferProp.h
+++ b/c++/src/H5DxferProp.h
@@ -86,24 +86,24 @@ class H5_DLLCPP DSetMemXferPropList : public PropList {
H5MM_free_t& free, void** free_info ) const;
// Sets the size of a contiguous block reserved for small data.
- void setSmallDataBlockSize(hsize_t size);
+ void setSmallDataBlockSize(hsize_t size) const;
// Returns the current small data block size setting.
- hsize_t getSmallDataBlockSize();
+ hsize_t getSmallDataBlockSize() const;
// Sets number of I/O vectors to be read/written in hyperslab I/O.
- void setHyperVectorSize(size_t vector_size);
+ void setHyperVectorSize(size_t vector_size) const;
// Returns the number of I/O vectors to be read/written in
// hyperslab I/O.
- size_t getHyperVectorSize();
+ size_t getHyperVectorSize() const;
// Enables or disables error-detecting for a dataset reading
// process.
- void setEDCCheck(H5Z_EDC_t check);
+ void setEDCCheck(H5Z_EDC_t check) const;
// Determines whether error-detection is enabled for dataset reads.
- H5Z_EDC_t getEDCCheck();
+ H5Z_EDC_t getEDCCheck() const;
///\brief Returns this class name.
virtual H5std_string fromClass () const { return("DSetMemXferPropList"); }