Browse Source

checkpoint

openfiles
Antonio SJ Musumeci 2 weeks ago
parent
commit
a12e7cd74f
  1. 3
      src/state.cpp
  2. 14
      src/state.hpp

3
src/state.cpp

@ -0,0 +1,3 @@
#include "state.hpp"
State state;

14
src/state.hpp

@ -0,0 +1,14 @@
#pragma once
#include "boost/unordered/concurrent_flat_map.hpp"
#include <filesystem>
class State
{
public:
boost::concurrent_flat_map<std::filesystem::path,int> passthrough;
};
extern State state;
Loading…
Cancel
Save