1 #ifndef DUNE_MULTISPGRID_TWISTUTILITY_HH
2 #define DUNE_MULTISPGRID_TWISTUTILITY_HH
3 
4 #if HAVE_DUNE_FEM
5 
6 #include <dune/fem/quadrature/caching/twistutility.hh>
7 
8 #include "declaration.hh"
9 
10 namespace Dune
11 {
12 
13   namespace Fem
14   {
15 
16     // Template specializtion of TwistUtility
17     // --------------------------------------
18 
19     template< class ct, int dim >
20     struct TwistUtility< Dune::MultiSPGrid< ct, dim > >
21     : public TwistFreeTwistUtility< Dune::MultiSPGrid< ct, dim > >
22     {};
23 
24   } // namespace Fem
25 
26 } // namespace Dune
27 
28 #endif // #if HAVE_DUNE_FEM
29 
30 #endif // #ifndef DUNE_MULTISPGRID_TWISTUTILITY_HH
31