xo-procedure2/include/xo/procedure2/DSimpleRcx.hpp

36 lines
844 B
C++

/** @file DSimpleRcx.hpp
*
* @author Roland Conybeare, Jan 2026
**/
#pragma once
#include <xo/alloc2/Allocator.hpp>
namespace xo {
namespace scm {
/** @brief Minimal runtime context.
*
* Minimal runtime context provides an allocator,
* and nothing more.
**/
class DSimpleRcx {
public:
using AAllocator = xo::mm::AAllocator;
using MemorySizeVisitor = xo::mm::MemorySizeVisitor;
public:
DSimpleRcx(obj<AAllocator> mm) : allocator_{mm} {}
obj<AAllocator> allocator() const noexcept { return allocator_; }
void visit_pools(const MemorySizeVisitor & visitor) const;
private:
obj<AAllocator> allocator_;
};
} /*namespace scm*/
} /*namespace xo*/
/* end DSimpleRcx.hpp */