/** @file RGCObject.hpp * * Generated automagically from ingredients: * 1. code generator: * [xo-facet/codegen/genfacet] * arguments: * --input [idl/GCObject.json5] * 2. jinja2 template for abstract facet .hpp file: * [iface_facet_any.hpp.j2] * 3. idl for facet methods * [idl/GCObject.json5] **/ #pragma once #include "AGCObject.hpp" namespace xo { namespace mm { /** @class RGCObject **/ template class RGCObject : public Object { private: using O = Object; public: /** @defgroup mm-gcobject-router-type-traits **/ ///@{ using ObjectType = Object; using DataPtr = Object::DataPtr; using typeseq = xo::reflect::typeseq; using size_type = AGCObject::size_type; using AAllocator = AGCObject::AAllocator; using AGCObjectVisitor = AGCObject::AGCObjectVisitor; using VisitReason = AGCObject::VisitReason; ///@} /** @defgroup mm-gcobject-router-ctors **/ ///@{ RGCObject() {} RGCObject(Object::DataPtr data) : Object{std::move(data)} {} RGCObject(const AGCObject * iface, void * data) requires std::is_same_v : Object(iface, data) {} ///@} /** @defgroup mm-gcobject-router-methods **/ ///@{ // explicit injected content // builtin methods typeseq _typeseq() const noexcept { return O::iface()->_typeseq(); } void _drop() const noexcept { O::iface()->_drop(O::data()); } // const methods // non-const methods (still const in router!) Opaque gco_shallow_move(obj gc) noexcept { return O::iface()->gco_shallow_move(O::data(), gc); } void visit_gco_children(VisitReason reason, obj fn) noexcept { return O::iface()->visit_gco_children(O::data(), reason, fn); } ///@} /** @defgroup mm-gcobject-member-vars **/ ///@{ static bool _valid; ///@} }; template bool RGCObject::_valid = xo::facet::valid_object_router(); } /*namespace mm*/ } /*namespace xo*/ namespace xo { namespace facet { template struct RoutingFor { using RoutingType = xo::mm::RGCObject; }; } } /* end RGCObject.hpp */