+ implementation

This commit is contained in:
Roland Conybeare 2023-09-23 15:48:36 -04:00
commit 87b4bfa795
10 changed files with 1446 additions and 0 deletions

16
src/Displayable.cpp Normal file
View file

@ -0,0 +1,16 @@
/* @file Displayable.cpp */
#include "refcnt/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 */