Skip to content
Snippets Groups Projects
Commit 961b34c2 authored by Tobias Leibner's avatar Tobias Leibner
Browse files

[spaces.rt.femlocalfunctions] move deprecated class, refs #14

parent 56e0b377
No related branches found
No related tags found
No related merge requests found
...@@ -9,4 +9,23 @@ ...@@ -9,4 +9,23 @@
#warning This header is deprecated, include <dune/gdt/playground/spaces/rt/fem-localfunctions.hh> instead (21.11.2014)! #warning This header is deprecated, include <dune/gdt/playground/spaces/rt/fem-localfunctions.hh> instead (21.11.2014)!
#include <dune/gdt/playground/spaces/rt/fem-localfunctions.hh> #include <dune/gdt/playground/spaces/rt/fem-localfunctions.hh>
namespace RaviartThomas {
template <class GridPartImp, int polynomialOrder, class RangeFieldImp, int rangeDim, int rangeDimCols = 1>
class DUNE_DEPRECATED_MSG("Use RT::FemLocalfunctionsBased instead (21.11.2014)!") FemLocalfunctionsBased
: public RT::FemLocalfunctionsBased<GridPartImp, polynomialOrder, RangeFieldImp, rangeDim, rangeDimCols>
{
public:
template <class... Args>
FemLocalfunctionsBased(Args&&... args)
: RT::FemLocalfunctionsBased<GridPartImp, polynomialOrder, RangeFieldImp, rangeDim, rangeDimCols>(
std::forward<Args>(args)...)
{
}
};
} // namespace RaviartThomas
#endif // DUNE_GDT_PLAYGROUND_SPACES_RAVIARTTHOMAS_FEM_LOCALFUNCTIONS_HH #endif // DUNE_GDT_PLAYGROUND_SPACES_RAVIARTTHOMAS_FEM_LOCALFUNCTIONS_HH
...@@ -225,24 +225,6 @@ class FemLocalfunctionsBased ...@@ -225,24 +225,6 @@ class FemLocalfunctionsBased
} // namespace RT } // namespace RT
namespace RaviartThomas {
template <class GridPartImp, int polynomialOrder, class RangeFieldImp, int rangeDim, int rangeDimCols = 1>
class DUNE_DEPRECATED_MSG("Use RT::FemLocalfunctionsBased instead (21.11.2014)!") FemLocalfunctionsBased
: public RT::FemLocalfunctionsBased<GridPartImp, polynomialOrder, RangeFieldImp, rangeDim, rangeDimCols>
{
public:
template <class... Args>
FemLocalfunctionsBased(Args&&... args)
: RT::FemLocalfunctionsBased<GridPartImp, polynomialOrder, RangeFieldImp, rangeDim, rangeDimCols>(
std::forward<Args>(args)...)
{
}
};
} // namespace RaviartThomas
} // namespace Spaces } // namespace Spaces
} // namespace GDT } // namespace GDT
} // namespace Dune } // namespace Dune
......
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