subrepo: subdir: "xo-numeric" merged: "7750c868" upstream: origin: "git@github.com:Rconybea/xo-numeric.git" branch: "main" commit: "7750c868" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
21 lines
410 B
C++
21 lines
410 B
C++
/** @file init_numeric.hpp
|
|
*
|
|
* @author Roland Conybeare, Feb 2026
|
|
**/
|
|
|
|
#pragma once
|
|
|
|
#include <xo/subsys/Subsystem.hpp>
|
|
|
|
namespace xo {
|
|
/* tag to represent the xo-numeric/ subsystem within ordered initialization */
|
|
enum S_numeric_tag {};
|
|
|
|
template <>
|
|
struct InitSubsys<S_numeric_tag> {
|
|
static void init();
|
|
static InitEvidence require();
|
|
};
|
|
}
|
|
|
|
/* end init_numeric.hpp */
|