dune-grid-glue 2.8-git
areawriter.hh
Go to the documentation of this file.
1#ifndef DUNE_GRIDGLUE_COMMON_AREAWRITER_HH
2#define DUNE_GRIDGLUE_COMMON_AREAWRITER_HH
3
4#include <ostream>
5#include <string>
6
7namespace Dune {
8namespace GridGlue {
9
10template<int side, typename Glue>
11void write_glue_area_vtk(const Glue& glue, std::ostream& out);
12
13template<int side, typename Glue>
14void write_glue_area_vtk(const Glue& glue, const std::string& filename);
15
35template<typename Glue>
36void write_glue_areas_vtk(const Glue& glue, const std::string& base);
37
38} /* namespace GridGlue */
39} /* namespace Dune */
40
41#include "areawriter_impl.hh"
42
43#endif
Definition: gridglue.hh:35
void write_glue_area_vtk(const Glue &glue, std::ostream &out)
Definition: areawriter_impl.hh:82
void write_glue_areas_vtk(const Glue &glue, const std::string &base)
Definition: areawriter_impl.hh:127