xo-umbrella2/xo-stringtable2/include/xo/stringtable2/init_stringtable2.hpp
Roland Conybeare 323d5a62dc git subrepo clone git@github.com:Rconybea/xo-stringtable2.git xo-stringtable2
subrepo:
  subdir:   "xo-stringtable2"
  merged:   "356a03a0"
upstream:
  origin:   "git@github.com:Rconybea/xo-stringtable2.git"
  branch:   "main"
  commit:   "356a03a0"
git-subrepo:
  version:  "0.4.9"
  origin:   "???"
  commit:   "???"
2026-06-06 22:22:29 -04:00

21 lines
451 B
C++

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