fix includes

most includes are now sorted by abstraction levels, with the most
abstract header first. also some system headers like <string> are now
explicitly included in every file where some of their classes are
used.
This commit is contained in:
Andreas Lauser
2012-03-20 11:13:22 +01:00
committed by Andreas Lauser
parent 7df261d46a
commit 7b3c8f18bb
3 changed files with 21 additions and 14 deletions

View File

@@ -31,20 +31,23 @@
// The numerical model
#include <dumux/boxmodels/2p/2pmodel.hh>
// The DUNE grid used
#include <dune/grid/yaspgrid.hh>
// Spatially dependent parameters
// The components that are used
#include <dumux/material/components/h2o.hh>
#include <dumux/material/components/oil.hh>
#include <dumux/common/cubegridcreator.hh>
// include material laws
// The material laws
#include <dumux/material/fluidmatrixinteractions/2p/regularizedbrookscorey.hh> /*@\label{tutorial-coupled:rawLawInclude}@*/
#include <dumux/material/fluidmatrixinteractions/2p/efftoabslaw.hh>
#include <dumux/material/fluidmatrixinteractions/mp/2padapter.hh>
// The DUNE grid used
#include <dune/grid/yaspgrid.hh>
#include <dumux/common/cubegridcreator.hh>
// Dune::FieldVector and Dune::FieldMatrix
#include <dune/common/fvector.hh>
#include <dune/common/fmatrix.hh>
namespace Dumux {
// forward declaration of the problem class