File indexing completed on 2025-04-19 08:55:36
0001
0002
0003
0004
0005
0006
0007
0008
0009 #pragma once
0010
0011 #include "H5PropertyList.hpp"
0012 #include "bits/H5_definitions.hpp"
0013
0014 namespace HighFive {
0015
0016
0017
0018 class H5_DEPRECATED("Use FileAccessProps directly") FileDriver: public FileAccessProps {};
0019
0020 #ifdef H5_HAVE_PARALLEL
0021
0022
0023 class H5_DEPRECATED("Add MPIOFileAccess directly to FileAccessProps") MPIOFileDriver
0024 : public FileAccessProps {
0025 public:
0026 inline MPIOFileDriver(MPI_Comm mpi_comm, MPI_Info mpi_info);
0027 };
0028 #endif
0029
0030 }
0031
0032 #include "bits/H5FileDriver_misc.hpp"