/* file init_reflect.cpp * * author: Roland Conybeare, Sep 2022 */ #include "init_reflect.hpp" #include "xo/subsys/Subsystem.hpp" namespace xo { void InitSubsys::init() { /* placeholder -- expecting there to be non-trivial content soon */ } /*init*/ InitEvidence InitSubsys::require() { return Subsystem::provide("reflect", &init); } /*require*/ } /*namespace xo*/ /* end init_reflect.cpp */