xo-alloc2: still more header org-streamlining

This commit is contained in:
Roland Conybeare 2025-12-14 17:28:19 -05:00
commit b26212c5aa
9 changed files with 19 additions and 6 deletions

View file

@ -5,8 +5,8 @@
#pragma once
#include "ACollector.hpp"
#include "ICollector_Any.hpp"
#include "RCollector.hpp"
#include "gc/ACollector.hpp"
#include "gc/ICollector_Any.hpp"
#include "gc/RCollector.hpp"
/* end Collector.hpp */

View file

@ -0,0 +1,13 @@
/** @file GCObject.hpp
*
* @author Roland Conybeare, Dec 2025
**/
#pragma once
#include "gcobject/AGCObject.hpp"
#include "gcobject/IGCObject_Any.hpp"
#include "gcobject/IGCObject_Xfer.hpp"
#include "gcobject/RGCObject.hpp"
/* end GCObject.hpp */

View file

@ -5,7 +5,7 @@
#pragma once
#include "IGCObject_Any.hpp"
#include "gcobject/IGCObject_Any.hpp"
#include <xo/facet/facet_implementation.hpp>
#include <xo/facet/typeseq.hpp>

View file

@ -3,7 +3,7 @@
* @author Roland Conybeare, Dec 2025
**/
#include "gc/IGCObject_Any.hpp"
#include "gcobject/IGCObject_Any.hpp"
#include <iostream>
namespace xo {

View file

@ -7,7 +7,7 @@
* see xo-object2/utest
**/
#include "gc/Collector.hpp"
#include "Collector.hpp"
#include "gc/DX1Collector.hpp"
#include <xo/indentlog/print/tag.hpp>
#include <catch2/catch.hpp>