dune-grid-glue  2.4.0
projectionwriter.hh
Go to the documentation of this file.
1 #ifndef DUNE_GRIDGLUE_COMMON_PROJECTIONWRITER_HH
2 #define DUNE_GRIDGLUE_COMMON_PROJECTIONWRITER_HH
3 
4 #include <iostream>
5 #include <string>
6 
8 
9 namespace Dune {
10 namespace GridGlue {
11 
26 template<typename Coordinate, typename Corners, typename Normals>
27 void write(const Projection<Coordinate>& projection,
28  const Corners& corners,
29  const Normals& normals,
30  std::ostream& out);
31 
38 template<typename Coordinate, typename Corners, typename Normals>
39 void write(const Projection<Coordinate>& projection,
40  const Corners& corners,
41  const Normals& normals,
42  const std::string& filename);
43 
44 } /* namespace GridGlue */
45 } /* namespace Dune */
46 
47 #include "projectionwriter_impl.hh"
48 
49 #endif
Definition: gridglue.hh:33
void write(const Projection< Coordinate > &projection, const Corners &corners, const Normals &normals, std::ostream &out)
write projection in VTK format
Definition: projectionwriter_impl.hh:84