18 lines
450 B
C++
18 lines
450 B
C++
/** @file procedure2_register_primitives.hpp
|
|
*
|
|
* @author Roland Conybeare, Mar 2026
|
|
**/
|
|
|
|
#pragma once
|
|
|
|
#include "PrimitiveRegistry.hpp"
|
|
#include <xo/alloc2/Collector.hpp>
|
|
|
|
namespace xo {
|
|
namespace scm {
|
|
/** Register gc-aware (AGCObject,DRepr) combinations with garbage collector @p gc **/
|
|
bool procedure2_register_primitives(obj<xo::mm::AAllocator> gc, InstallSink sink);
|
|
}
|
|
}
|
|
|
|
/* end procedure2_register_primitives.hpp */
|