initial implementation
This commit is contained in:
commit
51818852a4
11 changed files with 1181 additions and 0 deletions
20
include/xo/simulator/init_simulator.hpp
Normal file
20
include/xo/simulator/init_simulator.hpp
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
/* file init_simulator.hpp
|
||||
*
|
||||
* author: Roland Conybeare, Sep 2022
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "xo/subsys/Subsystem.hpp"
|
||||
|
||||
namespace xo {
|
||||
enum S_simulator_tag {};
|
||||
|
||||
template<>
|
||||
struct InitSubsys<S_simulator_tag> {
|
||||
static void init();
|
||||
static InitEvidence require();
|
||||
};
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end init_simulator.hpp */
|
||||
Loading…
Add table
Add a link
Reference in a new issue