xo-umbrella2/xo-reader2/include/xo/reader2/init_reader2.hpp
Roland Conybeare dbf8bb38a2 git subrepo clone (merge) git@github.com:Rconybea/xo-reader2.git xo-reader2
subrepo:
  subdir:   "xo-reader2"
  merged:   "70943b8e"
upstream:
  origin:   "git@github.com:Rconybea/xo-reader2.git"
  branch:   "main"
  commit:   "70943b8e"
git-subrepo:
  version:  "0.4.9"
  origin:   "???"
  commit:   "???"
2026-06-06 22:24:57 -04:00

21 lines
427 B
C++

/** @file init_reader2.hpp
*
* @author Roland Conybeare, Jan 2026
**/
#pragma once
#include <xo/subsys/Subsystem.hpp>
namespace xo {
/* tag to represent the xo-reader2/ subsystem within ordered initialization */
enum S_reader2_tag {};
template <>
struct InitSubsys<S_reader2_tag> {
static void init();
static InitEvidence require();
};
} /*namespace xo*/
/* end init_reader2.hpp */