h5cpp is a new C++ wrapper for HDF5s C-API.
HDF5 is a powerful binary file format. There is virtually nothing that cannot be stored within an HDF5 file. To read and write data from and to an HDF5 file you can either use the C-API or one of the wrappers for a scripting language (for Python there is for instance h5py or pytables). However, to keep their interfaces simple, many of these wrappers do not provide the full functionality HDF5 has to offer. If you want to use all features available the C-API is most probably the safest way to go.
h5cpp wants to provide both, an easy to use modern C++ interface but at the same time give you access to the full functionality HDF5 has to offer.
Many HDF5 wrappers which are currently around have to major issues:
- they do not provide the full functionality of the C-API
- they are specifically made for a particular field of application
Our goal is to keep h5cpp as much as application agnostic as possible and provide the full functionality of the C-API.
HDF5 is a rather powerful file format and thus the C-API is rather complex. h5cpps approach to this degree of complexity can be best described by a quote of Alan Kay
Simple things should be simple, complex things should be possible.
That's what we try to achieve and hopefully we succeeded in it.
We currently support the following operating systems
- Linux
- Windows
- OSX
Since we are using cmake to build h5cpp and also provide a cmake package
for the library, using it should be the same on each of these platforms.
See the online documentation for more on this.