Skip to content
This repository was archived by the owner on Oct 25, 2019. It is now read-only.

Releases: tdegeus/HDF5pp

Stable release

11 Apr 15:05
Compare
Choose a tag to compare
v0.0.7

Minor bugfix

Expandable arrays, generalization

08 Jan 14:39
Compare
Choose a tag to compare
  • 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

14 Dec 17:15
Compare
Choose a tag to compare
  • Added std::string support.
  • Allow "a" or "r+" write modes also for non-existing files.

Minor bugfix

24 Nov 07:48
Compare
Choose a tag to compare
  • 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

20 Nov 14:42
Compare
Choose a tag to compare

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

24 Oct 12:47
Compare
Choose a tag to compare

This module provides a HDF5-file-class which features:

  • Eigen support.
  • Automatic flushing.