initial implementation

This commit is contained in:
Roland Conybeare 2023-10-18 12:06:07 -04:00
commit 1078c49269
30 changed files with 2131 additions and 0 deletions

View file

@ -0,0 +1,21 @@
/* 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 */