mirror of https://github.com/trapexit/mergerfs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
297 B
21 lines
297 B
#pragma once
|
|
|
|
#include "boost/unordered/concurrent_flat_map.hpp"
|
|
|
|
#include <filesystem>
|
|
#include <atomic>
|
|
|
|
#include "int_types.h"
|
|
|
|
struct PassthroughDetails
|
|
{
|
|
std::atomic<u64>
|
|
};
|
|
|
|
class State
|
|
{
|
|
public:
|
|
boost::concurrent_flat_map<std::filesystem::path,int> passthrough;
|
|
};
|
|
|
|
extern State state;
|