|
bool | Hdf5Util::checkHdf5Gzip () |
| Checks whether gzip is available in the current hdf5 library. More...
|
|
bool | Hdf5Util::readAttribute (hid_t location, const string &attrName, string &value) |
|
bool | Hdf5Util::readAttribute (hid_t location, const string &attrName, unsigned int attrSize, int &value) |
|
bool | Hdf5Util::readAttribute (hid_t location, const string &attrName, unsigned int attrSize, float &value) |
|
bool | Hdf5Util::readAttribute (hid_t location, const string &attrName, unsigned int attrSize, double &value) |
|
bool | Hdf5Util::readAttribute (hid_t location, const string &attrName, std::vector< unsigned int > &attrSize, int &value) |
|
bool | Hdf5Util::readAttribute (hid_t location, const string &attrName, std::vector< unsigned int > &attrSize, float &value) |
|
bool | Hdf5Util::readAttribute (hid_t location, const string &attrName, std::vector< unsigned int > &attrSize, double &value) |
|
bool | Hdf5Util::writeAttribute (hid_t location, const string &attrName, const string &value) |
|
bool | Hdf5Util::writeAttribute (hid_t location, const string &attrName, unsigned int attrSize, const int &value) |
|
bool | Hdf5Util::writeAttribute (hid_t location, const string &attrName, unsigned int attrSize, const float &value) |
|
bool | Hdf5Util::writeAttribute (hid_t location, const string &attrName, unsigned int attrSize, const double &value) |
|
bool | Hdf5Util::writeAttribute (hid_t location, const string &attrName, std::vector< unsigned int > &attrSize, const int &value) |
|
bool | Hdf5Util::writeAttribute (hid_t location, const string &attrName, std::vector< unsigned int > &attrSize, const float &value) |
|
bool | Hdf5Util::writeAttribute (hid_t location, const string &attrName, std::vector< unsigned int > &attrSize, const double &value) |
|
- Todo:
- The write attrib calls need some serious cleanup. They should be using scoped objects to open attributes and groups instead of all the replicated close calls.
Definition in file Hdf5Util.cpp.