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.
27 lines
392 B
27 lines
392 B
#include "branches2.hpp"
|
|
#include "func_create.hpp"
|
|
|
|
#include <memory>
|
|
|
|
class State
|
|
{
|
|
typedef ghc::filesystem::path Path;
|
|
|
|
public:
|
|
State();
|
|
|
|
public:
|
|
Branches2 branches;
|
|
|
|
public:
|
|
int
|
|
create(Path const &fusepath_,
|
|
mode_t const mode_,
|
|
fuse_file_info_t *ffi_)
|
|
{
|
|
return _create(branches,fusepath_,mode_,ffi_);
|
|
}
|
|
|
|
private:
|
|
Func2::Create _create;
|
|
};
|