dune-fem 2.8.0
Loading...
Searching...
No Matches
space/discontinuousgalerkin/declaration.hh
Go to the documentation of this file.
1#ifndef DUNE_FEM_SPACE_DISCONTINUOUSGALERKIN_DECLARATION_HH
2#define DUNE_FEM_SPACE_DISCONTINUOUSGALERKIN_DECLARATION_HH
3
4
5namespace Dune
6{
7
8 namespace Fem
9 {
10
11 // DiscontinuousGalerkinSpace
12 // --------------------------
13
14 template< class FunctionSpace, class GridPart, int polOrder, class Storage >
15 class DiscontinuousGalerkinSpace;
16
17
18 // LagrangeDiscontinuousGalerkinSpace
19 // ----------------------------------
20
21 template< class FunctionSpace, class GridPart, int polOrder, class Storage >
22 class LagrangeDiscontinuousGalerkinSpace;
23
24
25 // LegendreDiscontinuousGalerkinSpace
26 // ----------------------------------
27
28 template< class FunctionSpace, class GridPart, int polOrder, class Storage >
29 class LegendreDiscontinuousGalerkinSpace;
30
31
32 // HierarchicLegendreDiscontinuousGalerkinSpace
33 // ----------------------------------
34
35 template< class FunctionSpace, class GridPart, int polOrder, class Storage >
36 class HierarchicLegendreDiscontinuousGalerkinSpace;
37
38 } // namespace Fem
39
40} // namespace Dune
41
42#endif // #ifndef DUNE_FEM_SPACE_DISCONTINUOUSGALERKIN_DECLARATION_HH
Definition: bindguard.hh:11