dune-localfunctions  2.2.1
p2.hh
Go to the documentation of this file.
1 // -*- tab-width: 4; indent-tabs-mode: nil -*-
2 #ifndef DUNE_P2_LOCALFINITEELEMENT_HH
3 #define DUNE_P2_LOCALFINITEELEMENT_HH
4 
5 #include "pk2d.hh"
6 #include "p23d.hh"
7 
8 namespace Dune
9 {
10 
13  template<class D, class R, int d>
15 
18  template<class D, class R>
19  class P2LocalFiniteElement<D, R, 2>
20  : public Pk2DLocalFiniteElement<D, R, 2>
21  {};
22 
25  template<class D, class R>
26  class P2LocalFiniteElement<D, R, 3>
27  : public P23DLocalFiniteElement<D, R>
28  {};
29 
30 }
31 
32 #endif