xo-reader/src/interpreter2/IGCObject_DVsmApplyFrame.cpp
Roland Conybeare 7e583b1337 refactor: + narrower interface for gc pointer forwarding
add AGCObjectVisitor, instead of requiring ACollector.
2026-04-05 23:53:02 -04:00

32 lines
931 B
C++

/** @file IGCObject_DVsmApplyFrame.cpp
*
* Generated automagically from ingredients:
* 1. code generator:
* [xo-facet/codegen/genfacet]
* arguments:
* --input [idl/IGCObject_DVsmApplyFrame.json5]
* 2. jinja2 template for abstract facet .hpp file:
* [iface_facet_any.hpp.j2]
* 3. idl for facet methods
* [idl/IGCObject_DVsmApplyFrame.json5]
**/
#include "detail/IGCObject_DVsmApplyFrame.hpp"
namespace xo {
namespace scm {
auto
IGCObject_DVsmApplyFrame::shallow_move(DVsmApplyFrame & self, obj<ACollector> gc) noexcept -> Opaque
{
return self.shallow_move(gc);
}
auto
IGCObject_DVsmApplyFrame::visit_gco_children(DVsmApplyFrame & self, obj<AGCObjectVisitor> fn) noexcept -> void
{
self.visit_gco_children(fn);
}
} /*namespace scm*/
} /*namespace xo*/
/* end IGCObject_DVsmApplyFrame.cpp */