subrepo: subdir: "xo-interpreter" merged: "047658a5" upstream: origin: "git@github.com:Rconybea/xo-interpreter.git" branch: "main" commit: "047658a5" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
21 lines
422 B
C++
21 lines
422 B
C++
/** @file init_interpreter.hpp
|
|
*
|
|
* author: Roland Conybeare, Nov 2025
|
|
**/
|
|
|
|
#pragma once
|
|
|
|
#include "xo/subsys/Subsystem.hpp"
|
|
|
|
namespace xo {
|
|
/* tag to represent the interpreter/ subsystem in ordered initialization */
|
|
enum S_interpreter_tag {};
|
|
|
|
template<>
|
|
struct InitSubsys<S_interpreter_tag> {
|
|
static void init();
|
|
static InitEvidence require();
|
|
};
|
|
}
|
|
|
|
/* end init_interpreter.hpp */
|