dune-localfunctions  2.2.1
lagrange.hh
Go to the documentation of this file.
1 #ifndef DUNE_LAGRANGEFINITEELEMENT_HH
2 #define DUNE_LAGRANGEFINITEELEMENT_HH
3 
6 
10 
11 namespace Dune
12 {
40  template< template <class,unsigned int> class LP,
41  unsigned int dimDomain, class D, class R,
42  class SF=R, class CF=SF >
44  : public GenericLocalFiniteElement< LagrangeBasisFactory< LP, dimDomain, SF, CF >,
45  LagrangeCoefficientsFactory<LP, dimDomain, SF >,
46  LagrangeInterpolationFactory< LP, dimDomain, SF > >
47  {
51  public:
52  typedef typename Base::Traits Traits;
53 
56  LagrangeLocalFiniteElement ( unsigned int topologyId, unsigned int order ) DUNE_DEPRECATED
57  : Base( topologyId, order )
58  {}
59 
62  LagrangeLocalFiniteElement ( const GeometryType &gt, unsigned int order )
63  : Base( gt, order )
64  {}
65  };
66 }
67 
68 #endif // #ifndef DUNE_LAGRANGEFINITEELEMENT_HH