From a12e7cd74fb9e652557d649cf377d2c0de1b06e3 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sun, 18 May 2025 22:51:18 -0500 Subject: [PATCH] checkpoint --- src/state.cpp | 3 +++ src/state.hpp | 14 ++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 src/state.cpp create mode 100644 src/state.hpp diff --git a/src/state.cpp b/src/state.cpp new file mode 100644 index 00000000..d4040f4b --- /dev/null +++ b/src/state.cpp @@ -0,0 +1,3 @@ +#include "state.hpp" + +State state; diff --git a/src/state.hpp b/src/state.hpp new file mode 100644 index 00000000..749e6d74 --- /dev/null +++ b/src/state.hpp @@ -0,0 +1,14 @@ +#pragma once + +#include "boost/unordered/concurrent_flat_map.hpp" + +#include + + +class State +{ +public: + boost::concurrent_flat_map passthrough; +}; + +extern State state;