git-subtree-dir: xo-refcnt git-subtree-mainline:ce2fc80bfdgit-subtree-split:bcd86e5324
16 lines
312 B
C++
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 */
|