reflect: initial implementation

This commit is contained in:
Roland Conybeare 2023-09-25 17:49:42 -04:00
commit fdb4ca37f4
39 changed files with 3662 additions and 0 deletions

View file

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