xo-stringtable2: retire unused .cpp files

This commit is contained in:
Roland Conybeare 2026-03-16 19:03:40 -05:00
commit a4e6328b7e
2 changed files with 0 additions and 65 deletions

View file

@ -1,42 +0,0 @@
/** @file stringtable2_register_facets.cpp
*
* @author Roland Conybeare, Mar 2026
**/
#ifdef NOPE
#include "stringtable2_register_facets.hpp"
#include <xo/stringtable2/UniqueString.hpp>
#include <xo/stringtable2/String.hpp>
#include <xo/facet/FacetRegistry.hpp>
#include <xo/indentlog/scope.hpp>
namespace xo {
using xo::print::APrintable;
using xo::mm::AGCObject;
using xo::scm::DString;
using xo::facet::FacetRegistry;
using xo::facet::typeseq;
namespace scm {
bool
stringtable2_register_facets()
{
scope log(XO_DEBUG(true));
FacetRegistry::register_impl<AGCObject, DUniqueString>();
FacetRegistry::register_impl<APrintable, DUniqueString>();
FacetRegistry::register_impl<AGCObject, DString>();
FacetRegistry::register_impl<APrintable, DString>();
log && log(xtag("DString.tseq", typeseq::id<DString>()));
return true;
}
} /*namespace scm*/
} /*namespace xo*/
#endif
/* end stringtable2_register_facets.cpp */

View file

@ -1,23 +0,0 @@
/** @file stringtable2_register_types.cpp
*
* @author Roland Conybeare, Mar 2026
**/
#include "stringtable2_register_types.hpp"
#include "UniqueString.hpp"
#include "String.hpp"
//#include <xo/facet/FacetRegistry.hpp>
#include <xo/indentlog/scope.hpp>
namespace xo {
using xo::mm::ACollector;
using xo::mm::AGCObject;
using xo::facet::impl_for;
using xo::scope;
namespace scm {
}
} /*namespace xo*/
/* end stringtable2_register_types.cpp */