/** @file object2_register_facets.cpp * * @author Roland Conybeare, Jan 2026 **/ #include "object2_register_facets.hpp" #include #include #include #include #include #include #include #include #include #include #include #include namespace xo { using xo::print::APrintable; using xo::mm::AAllocator; using xo::mm::AGCObject; using xo::scm::DList; using xo::scm::DFloat; using xo::scm::DString; using xo::facet::FacetRegistry; using xo::facet::typeseq; namespace scm { bool object2_register_facets() { scope log(XO_DEBUG(true)); FacetRegistry::register_impl(); FacetRegistry::register_impl(); FacetRegistry::register_impl(); FacetRegistry::register_impl(); FacetRegistry::register_impl(); FacetRegistry::register_impl(); FacetRegistry::register_impl(); FacetRegistry::register_impl(); log && log(xtag("DList.tseq", typeseq::id())); log && log(xtag("DFloat.tseq", typeseq::id())); log && log(xtag("DInteger.tseq", typeseq::id())); log && log(xtag("DString.tseq", typeseq::id())); log && log(xtag("AAllocator.tseq", typeseq::id())); log && log(xtag("APrintable.tseq", typeseq::id())); log && log(xtag("AGCObject.tseq", typeseq::id())); return true; } } /*namespace scm*/ } /*namespace xo*/ /* end object2_register_facets.cpp */