Skip to content
Snippets Groups Projects
Commit c459f58c authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[start.hh, timemanager.hh, dgfcreator.hh]

Include MPIHelper depending on Dune version because its header was
moved.
(reviewed by bernd)


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@9723 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 3081144b
No related branches found
No related tags found
No related merge requests found
...@@ -23,11 +23,16 @@ ...@@ -23,11 +23,16 @@
#ifndef DUMUX_DGF_GRID_CREATOR_HH #ifndef DUMUX_DGF_GRID_CREATOR_HH
#define DUMUX_DGF_GRID_CREATOR_HH #define DUMUX_DGF_GRID_CREATOR_HH
#include <dune/grid/io/file/dgfparser.hh> #include <dune/common/version.hh>
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
#include <dune/common/parallel/mpihelper.hh>
#else
#include <dune/common/mpihelper.hh> #include <dune/common/mpihelper.hh>
#endif
#include <dune/grid/io/file/dgfparser.hh>
#include <dumux/common/propertysystem.hh> #include "propertysystem.hh"
#include <dumux/common/parameters.hh> #include "parameters.hh"
namespace Dumux namespace Dumux
{ {
......
...@@ -25,16 +25,20 @@ ...@@ -25,16 +25,20 @@
#include <iostream> #include <iostream>
#include "propertysystem.hh"
#include "parameters.hh"
#include "valgrind.hh"
#include <dune/common/mpihelper.hh>
#include <dune/common/version.hh>
#include <dune/common/parametertreeparser.hh> #include <dune/common/parametertreeparser.hh>
#include <dune/common/version.hh>
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
#include <dune/common/parallel/mpihelper.hh>
#else
#include <dune/common/mpihelper.hh>
#endif
#include <dune/grid/io/file/dgfparser.hh> #include <dune/grid/io/file/dgfparser.hh>
#include "propertysystem.hh"
#include "parameters.hh"
#include "valgrind.hh"
namespace Dumux namespace Dumux
{ {
// forward declaration of property tags // forward declaration of property tags
......
...@@ -23,11 +23,15 @@ ...@@ -23,11 +23,15 @@
#ifndef DUMUX_TIME_MANAGER_HH #ifndef DUMUX_TIME_MANAGER_HH
#define DUMUX_TIME_MANAGER_HH #define DUMUX_TIME_MANAGER_HH
#include <dumux/common/propertysystem.hh>
#include <dune/common/timer.hh> #include <dune/common/timer.hh>
#include <dune/common/version.hh>
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
#include <dune/common/parallel/mpihelper.hh>
#else
#include <dune/common/mpihelper.hh> #include <dune/common/mpihelper.hh>
#endif
#include "propertysystem.hh"
namespace Dumux namespace Dumux
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment