Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-19 08:55:36

0001 /*
0002  *  Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
0003  *
0004  *  Distributed under the Boost Software License, Version 1.0.
0005  *    (See accompanying file LICENSE_1_0.txt or copy at
0006  *          http://www.boost.org/LICENSE_1_0.txt)
0007  *
0008  */
0009 #pragma once
0010 
0011 #include "H5PropertyList.hpp"
0012 #include "bits/H5_definitions.hpp"
0013 
0014 namespace HighFive {
0015 
0016 /// \brief file driver base concept
0017 /// \deprecated Use FileAccessProps directly
0018 class H5_DEPRECATED("Use FileAccessProps directly") FileDriver: public FileAccessProps {};
0019 
0020 #ifdef H5_HAVE_PARALLEL
0021 /// \brief MPIIO Driver for Parallel HDF5
0022 /// \deprecated Add MPIOFileAccess directly to FileAccessProps
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 }  // namespace HighFive
0031 
0032 #include "bits/H5FileDriver_misc.hpp"