/** @file GCObjectConversion_DFloat.hpp * * @author Roland Conybeare, Jan 2026 **/ #pragma once #include "DFloat.hpp" #include "number/IGCObject_DFloat.hpp" #include namespace xo { namespace scm { template <> struct GCObjectConversion { static_assert(std::is_same_v); using AGCObject = xo::mm::AGCObject; using AAllocator = xo::mm::AAllocator; static obj to_gco(obj mm, double x); static double from_gco(obj mm, obj gco); }; } /*namespace scm*/ } /*namespace xo*/ /* end GCObjectConversion_DFloat.hpp */