xo-umbrella2/xo-printable2/include/xo/printable2/detail/ppdetail_Printable.hpp
2026-01-09 17:48:54 -05:00

21 lines
550 B
C++

/** @file ppdetail_Printable.hpp
*
* @author Roland Conybeare, Jan 2026
**/
#include <xo/indentlog/print/pretty.hpp>
#include "Printable.hpp"
namespace xo {
namespace print {
template <typename DRepr>
struct ppdetail<xo::facet::obj<APrintable, DRepr>> {
static bool print_pretty(const ppindentinfo & ppii,
const xo::facet::obj<APrintable, DRepr> & x) {
return x.pretty(ppii);
}
};
}
} /*namespace xo*/
/* end ppdetail_Printable.hpp */