10#ifndef H5FILEDRIVER_MISC_HPP
11#define H5FILEDRIVER_MISC_HPP
19inline MPIOFileDriver::MPIOFileDriver(MPI_Comm comm, MPI_Info info) {
20 if (H5Pset_fapl_mpio(_hid, comm, info) < 0) {
21 HDF5ErrMapper::ToException<FileException>(
22 "Unable to set-up MPIO Driver configuration");
26inline void MPIOFileDriver::getFaplMPIO(MPI_Comm *comm, MPI_Info *info) {
27 if (H5Pget_fapl_mpio(_hid, comm, info) < 0) {
28 HDF5ErrMapper::ToException<FileException>(
29 "Unable to get MPIO comm and info");