lagrangebasis.hh
Go to the documentation of this file.00001 #ifndef DUNE_LAGRANGEBASIS_HH
00002 #define DUNE_LAGRANGEBASIS_HH
00003
00004 #include <fstream>
00005 #include <dune/common/exceptions.hh>
00006
00007 #include <dune/localfunctions/utility/defaultbasisfactory.hh>
00008 #include <dune/localfunctions/utility/monomialbasis.hh>
00009
00010 #include <dune/localfunctions/lagrange/interpolation.hh>
00011
00012 namespace Dune
00013 {
00014
00015 template< template <class,unsigned int> class LP,
00016 unsigned int dim, class SF, class CF >
00017 struct LagrangeBasisFactory
00018 : public DefaultBasisFactory< MonomialBasisFactory<dim,CF>,
00019 LagrangeInterpolationFactory<LP,dim,CF>,
00020 dim,1,SF,CF >
00021 {};
00022
00023 }
00024
00025 #endif // #ifndef DUNE_LAGRANGEBASIS_HH
00026