21 lines
579 B
C++
21 lines
579 B
C++
/** @file numeric_register_primitives.hpp
|
|
*
|
|
* @author Roland Conybeare, Mar 2026
|
|
**/
|
|
|
|
#pragma once
|
|
|
|
#include "PrimitiveRegistry.hpp"
|
|
#include <xo/alloc2/Collector.hpp>
|
|
|
|
namespace xo {
|
|
namespace scm {
|
|
/** Register primitive factories with primitive registry **/
|
|
bool numeric_register_primitives(obj<xo::mm::AAllocator> mm,
|
|
StringTable * stbl,
|
|
InstallSink sink,
|
|
InstallFlags flags);
|
|
}
|
|
}
|
|
|
|
/* end numeric_register_primitives.hpp */
|