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
402 B
27 lines
402 B
#include "func_open_ff.hpp"
|
|
|
|
#include "error.hpp"
|
|
#include "fs_open.hpp"
|
|
|
|
|
|
std::string_view
|
|
Func2::OpenFF::name() const
|
|
{
|
|
return "ff";
|
|
}
|
|
|
|
int
|
|
Func2::OpenFF::operator()(const Branches &branches_,
|
|
const fs::path &fusepath_,
|
|
const mode_t mode_)
|
|
{
|
|
Err err;
|
|
fs::path fullpath;
|
|
|
|
for(const auto &branch : branches_)
|
|
{
|
|
|
|
}
|
|
|
|
return err;
|
|
}
|