TRIQS/h5 1.3.0
C++ interface to HDF5
|
#include "./vector.hpp"
#include <hdf5.h>
#include <hdf5_hl.h>
#include <algorithm>
#include <cstring>
Implementation details for stl/vector.hpp.
Definition in file vector.cpp.
Go to the source code of this file.
Functions | |
void | h5::from_char_buf (char_buf const &cb, std::vector< std::string > &v) |
Create a vector of strings from an h5::char_buf. | |
void | h5::from_char_buf (char_buf const &cb, std::vector< std::vector< std::string > > &v) |
Create a vector of vectors of strings from an h5::char_buf. | |
void | h5::h5_read_attribute (object obj, std::string const &name, std::vector< std::string > &v) |
Read a vector of strings from an HDF5 attribute. | |
void | h5::h5_read_attribute (object obj, std::string const &name, std::vector< std::vector< std::string > > &v) |
Read a vector of vectors of strings from an HDF5 attribute. | |
void | h5::h5_write_attribute (object obj, std::string const &name, std::vector< std::string > const &v) |
Write a vectors of strings to an HDF5 attribute. | |
void | h5::h5_write_attribute (object obj, std::string const &name, std::vector< std::vector< std::string > > const &v) |
Write a vector of vectors of strings to an HDF5 attribute. | |
char_buf | h5::to_char_buf (std::vector< std::string > const &v) |
Create an h5::char_buf from a vector of strings. | |
char_buf | h5::to_char_buf (std::vector< std::vector< std::string > > const &v) |
Create an h5::char_buf from a vector of vectors of strings. | |