xo-numeric/xo-process/include/xo/process/init_process.hpp
Roland Conybeare 2450ab4ed9 Add 'xo-process/' from commit '7cfc560f02'
git-subtree-dir: xo-process
git-subtree-mainline: abd08e3491
git-subtree-split: 7cfc560f02
2025-05-11 16:10:34 -05:00

21 lines
419 B
C++

/* file init_process.hpp
*
* author: Roland Conybeare, Sep 2022
*/
#pragma once
#include "xo/subsys/Subsystem.hpp"
namespace xo {
/* tag to represent the process/ subsystem within ordered initialization */
enum S_process_tag {};
template<>
struct InitSubsys<S_process_tag> {
static void init();
static InitEvidence require();
};
} /*namespace xo*/
/* end init_process.hpp */