3#ifndef DUNE_GRIDGLUE_COMMON_PROJECTIONWRITER_HH
4#define DUNE_GRIDGLUE_COMMON_PROJECTIONWRITER_HH
9#include <dune/grid-glue/common/projection.hh>
28template<
typename Coordinate,
typename Corners,
typename Normals>
29void write(
const Projection<Coordinate>& projection,
30 const Corners& corners,
31 const Normals& normals,
40template<
typename Coordinate,
typename Corners,
typename Normals>
41void write(
const Projection<Coordinate>& projection,
42 const Corners& corners,
43 const Normals& normals,
44 const std::string& filename);
54template<
typename Coordinate,
typename Corners,
typename Normals>
55void print(
const Projection<Coordinate>& projection,
56 const Corners& corners,
57 const Normals& normals);
62#include "projectionwriter_impl.hh"