Browse Source

state.hpp

toml4
Antonio SJ Musumeci 8 months ago
parent
commit
28a3d614b3
  1. 10
      src/state.hpp

10
src/state.hpp

@ -14,9 +14,13 @@ public:
Branches2 branches; Branches2 branches;
public: public:
int create(Path const &fusepath,
mode_t const mode,
fuse_file_info_t *ffi);
int
create(Path const &fusepath_,
mode_t const mode_,
fuse_file_info_t *ffi_)
{
return _create(branches,fusepath_,mode_,ffi_);
}
private: private:
Func2::Create _create; Func2::Create _create;

Loading…
Cancel
Save