p2.hh
Go to the documentation of this file.00001
00002 #ifndef DUNE_P2_LOCALFINITEELEMENT_HH
00003 #define DUNE_P2_LOCALFINITEELEMENT_HH
00004
00005 #include "pk2d.hh"
00006 #include "p23d.hh"
00007
00008 namespace Dune
00009 {
00010
00013 template<class D, class R, int d>
00014 class P2LocalFiniteElement;
00015
00018 template<class D, class R>
00019 class P2LocalFiniteElement<D, R, 2>
00020 : public Pk2DLocalFiniteElement<D, R, 2>
00021 {};
00022
00025 template<class D, class R>
00026 class P2LocalFiniteElement<D, R, 3>
00027 : public P23DLocalFiniteElement<D, R>
00028 {};
00029
00030 }
00031
00032 #endif