00001 #ifndef DUNE_RAVIARTTHOMASBASIS_HH 00002 #define DUNE_RAVIARTTHOMASBASIS_HH 00003 00004 #include <fstream> 00005 #include <dune/common/exceptions.hh> 00006 00007 #include <dune/localfunctions/utility/defaultbasisfactory.hh> 00008 #include <dune/localfunctions/raviartthomas/interpolation.hh> 00009 #include <dune/localfunctions/raviartthomas/raviartthomasprebasis.hh> 00010 00011 namespace Dune 00012 { 00013 template< unsigned int dim, class SF, class CF > 00014 struct RaviartThomasBasisFactory 00015 : public DefaultBasisFactory< RTPreBasisFactory<dim,CF>, 00016 RaviartThomasL2InterpolationFactory<dim,CF>, 00017 dim,dim,SF,CF > 00018 { 00019 }; 00020 } 00021 00022 #endif // #ifndef DUNE_RAVIARTTHOMASBASIS_HH 00023