Add 'xo-refcnt/' from commit 'bcd86e5324'

git-subtree-dir: xo-refcnt
git-subtree-mainline: ce2fc80bfd
git-subtree-split: bcd86e5324
This commit is contained in:
Roland Conybeare 2025-05-10 18:31:14 -05:00
commit 2075b654af
17 changed files with 1278 additions and 0 deletions

View file

@ -0,0 +1,16 @@
/* @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 */