mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-21 16:57:25 -06:00
changed: move hdf5serializer to opm/simulators/utils/HDF5Serializer.hpp
does not interact with typetag system
This commit is contained in:
parent
ddb174f401
commit
96a3a6d45a
@ -434,7 +434,6 @@ list (APPEND PUBLIC_HEADER_FILES
|
|||||||
ebos/ecltransmissibility_impl.hh
|
ebos/ecltransmissibility_impl.hh
|
||||||
ebos/eclwriter.hh
|
ebos/eclwriter.hh
|
||||||
ebos/femcpgridcompat.hh
|
ebos/femcpgridcompat.hh
|
||||||
ebos/hdf5serializer.hh
|
|
||||||
ebos/vtkecltracermodule.hh
|
ebos/vtkecltracermodule.hh
|
||||||
opm/simulators/flow/countGlobalCells.hpp
|
opm/simulators/flow/countGlobalCells.hpp
|
||||||
opm/simulators/flow/priVarsPacking.hpp
|
opm/simulators/flow/priVarsPacking.hpp
|
||||||
@ -627,7 +626,7 @@ endif()
|
|||||||
|
|
||||||
if(HDF5_FOUND)
|
if(HDF5_FOUND)
|
||||||
list(APPEND PUBLIC_HEADER_FILES
|
list(APPEND PUBLIC_HEADER_FILES
|
||||||
ebos/hdf5serializer.hh
|
opm/simulators/utils/HDF5Serializer.hpp
|
||||||
opm/simulators/utils/HDF5File.hpp
|
opm/simulators/utils/HDF5File.hpp
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
#include <ebos/hdf5serializer.hh>
|
#include <opm/simulators/utils/HDF5Serializer.hpp>
|
||||||
|
|
||||||
#include <opm/simulators/timestepping/SimulatorTimer.hpp>
|
#include <opm/simulators/timestepping/SimulatorTimer.hpp>
|
||||||
#include <opm/simulators/utils/ParallelCommunication.hpp>
|
#include <opm/simulators/utils/ParallelCommunication.hpp>
|
||||||
|
@ -54,7 +54,7 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#if HAVE_HDF5
|
#if HAVE_HDF5
|
||||||
#include <ebos/hdf5serializer.hh>
|
#include <opm/simulators/utils/HDF5Serializer.hpp>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace Opm::Properties {
|
namespace Opm::Properties {
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
#include <opm/simulators/utils/DeferredLoggingErrorHelpers.hpp>
|
#include <opm/simulators/utils/DeferredLoggingErrorHelpers.hpp>
|
||||||
|
|
||||||
#if HAVE_HDF5
|
#if HAVE_HDF5
|
||||||
#include <ebos/hdf5serializer.hh>
|
#include <opm/simulators/utils/HDF5Serializer.hpp>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
@ -18,8 +18,8 @@
|
|||||||
module for the precise wording of the license and the list of
|
module for the precise wording of the license and the list of
|
||||||
copyright holders.
|
copyright holders.
|
||||||
*/
|
*/
|
||||||
#ifndef ECL_HDF5_SERIALIZER_HH
|
#ifndef HDF5_SERIALIZER_HPP
|
||||||
#define ECL_HDF5_SERIALIZER_HH
|
#define HDF5_SERIALIZER_HPP
|
||||||
|
|
||||||
#include <opm/common/utility/Serializer.hpp>
|
#include <opm/common/utility/Serializer.hpp>
|
||||||
|
|
||||||
@ -29,7 +29,6 @@
|
|||||||
#include <opm/simulators/utils/SerializationPackers.hpp>
|
#include <opm/simulators/utils/SerializationPackers.hpp>
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cctype>
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
|
||||||
namespace Opm {
|
namespace Opm {
|
||||||
@ -134,4 +133,4 @@ private:
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif // HDF5_SERIALIZER_HPP
|
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
#include <opm/common/utility/FileSystem.hpp>
|
#include <opm/common/utility/FileSystem.hpp>
|
||||||
|
|
||||||
#include <ebos/hdf5serializer.hh>
|
#include <opm/simulators/utils/HDF5Serializer.hpp>
|
||||||
|
|
||||||
#include <opm/input/eclipse/Schedule/Group/Group.hpp>
|
#include <opm/input/eclipse/Schedule/Group/Group.hpp>
|
||||||
#include <opm/simulators/utils/ParallelCommunication.hpp>
|
#include <opm/simulators/utils/ParallelCommunication.hpp>
|
||||||
@ -31,7 +31,6 @@
|
|||||||
#include <boost/test/unit_test.hpp>
|
#include <boost/test/unit_test.hpp>
|
||||||
|
|
||||||
#include <filesystem>
|
#include <filesystem>
|
||||||
#include <stdexcept>
|
|
||||||
|
|
||||||
using namespace Opm;
|
using namespace Opm;
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
#include <ebos/hdf5serializer.hh>
|
#include <opm/simulators/utils/HDF5Serializer.hpp>
|
||||||
|
|
||||||
#include <opm/common/utility/FileSystem.hpp>
|
#include <opm/common/utility/FileSystem.hpp>
|
||||||
|
|
||||||
@ -32,7 +32,6 @@
|
|||||||
#include <boost/test/unit_test.hpp>
|
#include <boost/test/unit_test.hpp>
|
||||||
|
|
||||||
#include <filesystem>
|
#include <filesystem>
|
||||||
#include <stdexcept>
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
using namespace Opm;
|
using namespace Opm;
|
||||||
|
Loading…
Reference in New Issue
Block a user