25 lines
628 B
C++
25 lines
628 B
C++
/** @file DPrimitive_gco_2_dict_string.hpp
|
|
*
|
|
* @author Roland Conybeare, Jan 2026
|
|
**/
|
|
|
|
#pragma once
|
|
|
|
#include <xo/object2/Dictionary.hpp>
|
|
#include <xo/stringtable2/String.hpp>
|
|
#include <xo/alloc2/GCObject.hpp>
|
|
#include "DPrimitive.hpp"
|
|
|
|
namespace xo {
|
|
namespace scm {
|
|
using xo::mm::AGCObject;
|
|
using xo::facet::obj;
|
|
|
|
using DPrimitive_gco_2_dict_string
|
|
= Primitive<obj<AGCObject> (*)(obj<ARuntimeContext>,
|
|
obj<AGCObject,DDictionary>,
|
|
obj<AGCObject,DString>)>;
|
|
}
|
|
}
|
|
|
|
/* end DPrimitive_gco_2_dict_string.hpp */
|