This repository was archived by the owner on Oct 25, 2019. It is now read-only.
Releases: tdegeus/HDF5pp
Releases · tdegeus/HDF5pp
Stable release
Expandable arrays, generalization
- Added expandable arrays to write scalars as part of an array, that is automatically expanded if needed.
- Code clean-up and generalization: templates now allow easy extension to any desired type (as a user, or in the code a developer).
- Depreciated
bool
support, as it is not HDF5 supported. - Documentation updates.
Added std::string support
- Added
std::string
support. - Allow
"a"
or"r+"
write modes also for non-existing files.
Minor bugfix
- Added the file-name as class variable for later reference.
- Removed all malloc's from the code, and replaced them using vector's.
New features
The library now allows reading of data. The read
function can be templated, e.g.
std::vector<double> data = file.read<std::vector<double>>("/path/to/data");
First working version
This module provides a HDF5-file-class which features:
- Eigen support.
- Automatic flushing.