12#ifndef CDT_PLUSPLUS_FORMATTERS_HPP
13#define CDT_PLUSPLUS_FORMATTERS_HPP
16#include <fmt/format.h>
25 template <
typename Kernel>
26 struct formatter<CGAL::Point_3<Kernel>>
31 constexpr auto parse(format_parse_context& ctx) ->
decltype(ctx.begin())
32 {
return ctx.begin(); }
39 template <
typename FormatContext>
40 auto format(CGAL::Point_3<Kernel>
const& point, FormatContext& ctx)
const
41 ->
decltype(ctx.out())
45 return fmt::format_to(ctx.out(),
"{}", ss.str());
Traits class for particular uses of CGAL.