dune-grid-glue  2.9
areawriter.hh
Go to the documentation of this file.
1 // SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
2 // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-GPL-2.0-only-with-dune-grid-glue-exception
3 #ifndef DUNE_GRIDGLUE_COMMON_AREAWRITER_HH
4 #define DUNE_GRIDGLUE_COMMON_AREAWRITER_HH
5 
6 #include <ostream>
7 #include <string>
8 
9 namespace Dune {
10 namespace GridGlue {
11 
12 template<int side, typename Glue>
13 void write_glue_area_vtk(const Glue& glue, std::ostream& out);
14 
15 template<int side, typename Glue>
16 void write_glue_area_vtk(const Glue& glue, const std::string& filename);
17 
37 template<typename Glue>
38 void write_glue_areas_vtk(const Glue& glue, const std::string& base);
39 
40 } /* namespace GridGlue */
41 } /* namespace Dune */
42 
43 #include "areawriter_impl.hh"
44 
45 #endif
Definition: gridglue.hh:37
void write_glue_area_vtk(const Glue &glue, std::ostream &out)
Definition: areawriter_impl.hh:84
void write_glue_areas_vtk(const Glue &glue, const std::string &base)
Definition: areawriter_impl.hh:129