From 37db0094ffc473db87d476d2e4d4034ebe4b5e9a Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sun, 10 Mar 2024 16:16:49 -0500 Subject: [PATCH] state.hpp --- src/state.hpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/state.hpp b/src/state.hpp index fe850d15..170b462f 100644 --- a/src/state.hpp +++ b/src/state.hpp @@ -5,12 +5,19 @@ 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); + public: Func2::Create create; };