Skip to content
Snippets Groups Projects
Commit 3d3cc79b authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

remove boxspatialparams* which have been deprecated in 2.3

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@10390 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 37b82f2e
No related branches found
No related tags found
No related merge requests found
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
// vi: set et ts=4 sw=4 sts=4:
/*****************************************************************************
* See the file COPYING for full copying permissions. *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*****************************************************************************/
/*!
* \file
*
* \ingroup SpatialParameters
* \brief The base class for spatial parameters of problems using the
* box method.
*/
#ifndef DUMUX_BOX_SPATIAL_PARAMS_HH
#define DUMUX_BOX_SPATIAL_PARAMS_HH
#include "implicitspatialparams.hh"
namespace Dumux {
/*!
* \ingroup SpatialParameters
*/
/**
* \brief The base class for spatial parameters of problems using the
* box method.
*/
template<class TypeTag>
class BoxSpatialParams: public ImplicitSpatialParams<TypeTag>
{
typedef ImplicitSpatialParams<TypeTag> ParentType;
typedef typename GET_PROP_TYPE(TypeTag, GridView) GridView;
public:
DUNE_DEPRECATED_MSG("Use ImplicitSpatialParams from dumux/material/spatialparams/implicitspatialparams.hh instead.")
BoxSpatialParams(const GridView &gridView)
: ParentType(gridView)
{ }
};
} // namespace Dumux
#endif
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
// vi: set et ts=4 sw=4 sts=4:
/*****************************************************************************
* See the file COPYING for full copying permissions. *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*****************************************************************************/
/*!
* \file
*
* \ingroup SpatialParameters
* \brief The base class for spatial parameters of problems using the
* box method.
*/
#ifndef DUMUX_BOX_SPATIAL_PARAMS_ONE_P_HH
#define DUMUX_BOX_SPATIAL_PARAMS_ONE_P_HH
#include "implicitspatialparams1p.hh"
namespace Dumux {
/*!
* \ingroup SpatialParameters
*/
/**
* \brief The base class for spatial parameters of problems using the
* box method.
*/
template<class TypeTag>
class BoxSpatialParamsOneP : public ImplicitSpatialParamsOneP<TypeTag>
{
typedef ImplicitSpatialParamsOneP<TypeTag> ParentType;
typedef typename GET_PROP_TYPE(TypeTag, GridView) GridView;
public:
DUNE_DEPRECATED_MSG("Use ImplicitSpatialParamsOneP from dumux/material/spatialparams/implicitspatialparams1p.hh instead.")
BoxSpatialParamsOneP(const GridView &gridView)
: ParentType(gridView)
{ }
};
} // namespace Dumux
#endif
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