Tagged Questions
4
votes
4answers
2k views
How to best write out a std::vector < std::string > container to a HDF5 dataset?
Given a vector of strings, what is the best way to write them out to a HDF5 dataset? At the moment I'm doing something like the following:
const unsigned int MaxStrLength = 512;
struct ...