xo-interpreter2: work towards utest w/ vsm+reader [WIP]
This commit is contained in:
parent
b69098af0d
commit
a10c7dcab2
10 changed files with 224 additions and 4 deletions
21
include/xo/interpreter2/init_interpreter2.hpp
Normal file
21
include/xo/interpreter2/init_interpreter2.hpp
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
/** @file init_interpreter2.hpp
|
||||
*
|
||||
* @author Roland Conybeare, Jan 2026
|
||||
**/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <xo/subsys/Subsystem.hpp>
|
||||
|
||||
namespace xo {
|
||||
/* tag to represent the xo-interpreter2/ subsystem within ordered initialization */
|
||||
enum S_interpreter2_tag {};
|
||||
|
||||
template <>
|
||||
struct InitSubsys<S_interpreter2_tag> {
|
||||
static void init();
|
||||
static InitEvidence require();
|
||||
};
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end init_interpreter2.hpp */
|
||||
Loading…
Add table
Add a link
Reference in a new issue