LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
Loading...
Searching...
No Matches
print_info.h
1#ifndef PRINT_INFO_H
2#define PRINT_INFO_H
3
4#include "lf/geometry/geometry.h"
5
6namespace lf::geometry {
7
24void PrintInfo(std::ostream& o, const Geometry& geom, int output_ctrl = 0);
25
38std::ostream& operator<<(std::ostream& stream, const Geometry& geom);
39
40} // namespace lf::geometry
41
43
47template <>
48struct fmt::formatter<lf::geometry::Geometry> : ostream_formatter {};
49
51
52#endif // PRINT_INFO_H
Defines the Geometry interface and provides a number of classes that implement this interface + addit...
Definition compose.h:13
std::ostream & operator<<(std::ostream &stream, const Geometry &geom)
Definition print_info.cc:26
void PrintInfo(std::ostream &o, const Geometry &geom, int output_ctrl)
Definition print_info.cc:5
Definition assemble.h:31