Add 'xo-reflect/' from commit '5dce303fe1'
git-subtree-dir: xo-reflect git-subtree-mainline:8111f3846cgit-subtree-split:5dce303fe1
This commit is contained in:
commit
820f431d66
45 changed files with 3834 additions and 0 deletions
23
xo-reflect/src/reflect/init_reflect.cpp
Normal file
23
xo-reflect/src/reflect/init_reflect.cpp
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
/* file init_reflect.cpp
|
||||
*
|
||||
* author: Roland Conybeare, Sep 2022
|
||||
*/
|
||||
|
||||
#include "init_reflect.hpp"
|
||||
#include "xo/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 */
|
||||
Loading…
Add table
Add a link
Reference in a new issue