xo-alloc/xo-refcnt/src/Displayable.cpp
Roland Conybeare 2075b654af Add 'xo-refcnt/' from commit 'bcd86e5324'
git-subtree-dir: xo-refcnt
git-subtree-mainline: ce2fc80bfd
git-subtree-split: bcd86e5324
2025-05-10 18:31:14 -05:00

16 lines
312 B
C++

/* @file Displayable.cpp */
#include "Displayable.hpp"
namespace xo {
using xo::tostr;
namespace ref {
std::string
Displayable::display_string() const {
return tostr(*this);
} /*display_string*/
} /*namespace ref*/
} /*namespace xo*/
/* end Displayable.cpp */