1 #ifndef METAGRID_PAPER_METAGRID_TAGS_HH
2 #define METAGRID_PAPER_METAGRID_TAGS_HH
3 
4 #warning "tags"
5 
6 namespace Dune
7 {
8 
9   // Metagrid Tags
10   // -------------
11 
12   struct geogrid {};
13   struct geogrid_cached {};
14 
15 #if HAVE_DUNE_GRID_DEV_HOWTO
16   struct identitygrid {};
17 #endif // #if HAVE_DUNE_GRID_DEV_HOWTO
18 
19 #if HAVE_DUNE_SPGRID
20   struct cartesiangrid {};
21 #endif // #if HAVE_DUNE_SPGRID
22 
23   struct cacheitgrid {};
24   struct filteredgrid {};
25   struct idgrid {};
26   struct parallelgrid {};
27 
28 #if HAVE_DUNE_PRISMGRID
29   struct prismgrid {};
30 #endif // #if HAVE_DUNE_PRISMGRID
31 
32 } // end namespace Dune
33 
34 #endif // #ifndef METAGRID_PAPER_METAGRID_TAGS_HH
35