From 457c267d50316be58d389df95dacd0e4824871d0 Mon Sep 17 00:00:00 2001 From: Bernd Flemisch <bernd@iws.uni-stuttgart.de> Date: Wed, 23 May 2012 15:04:22 +0000 Subject: [PATCH] Stokes: derive model from property rather than explicit base class git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@8360 2fb0f335-1f38-0410-981e-8018bf24f1b0 --- dumux/freeflow/stokes/stokesmodel.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dumux/freeflow/stokes/stokesmodel.hh b/dumux/freeflow/stokes/stokesmodel.hh index 57ac51aebf..d834f812e6 100644 --- a/dumux/freeflow/stokes/stokesmodel.hh +++ b/dumux/freeflow/stokes/stokesmodel.hh @@ -66,7 +66,7 @@ namespace Dumux * (box) scheme in space and by the implicit Euler method in time. */ template<class TypeTag> -class StokesModel : public BoxModel<TypeTag> +class StokesModel : public GET_PROP_TYPE(TypeTag, BaseModel) { typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; typedef typename GET_PROP_TYPE(TypeTag, GridView) GridView; -- GitLab