xo-umbrella2/xo-process/include/xo/process/init_process.hpp
Roland Conybeare 81a8a3dd84 git subrepo clone (merge) git@github.com:Rconybea/xo-process.git xo-process
subrepo:
  subdir:   "xo-process"
  merged:   "ff603471"
upstream:
  origin:   "git@github.com:Rconybea/xo-process.git"
  branch:   "main"
  commit:   "ff603471"
git-subrepo:
  version:  "0.4.9"
  origin:   "???"
  commit:   "???"
2026-06-06 22:17:23 -04: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 */