21 lines
550 B
C++
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 */
|