summaryrefslogtreecommitdiff
path: root/netfs/fuse
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2022-04-15 18:06:36 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2022-04-15 18:06:36 +0100
commita3546210a5dc7dca1a234fb665ded46a8598a858 (patch)
treea3a84349aba42469d70eb27dac2aa6afe3fe96c0 /netfs/fuse
parentEnable and fixup all conversion/cast warnings (diff)
downloadnetfs-a3546210a5dc7dca1a234fb665ded46a8598a858.tar.bz2
netfs-a3546210a5dc7dca1a234fb665ded46a8598a858.tar.xz
netfs-a3546210a5dc7dca1a234fb665ded46a8598a858.zip
No hacky define, types for open maps public for testing
Diffstat (limited to 'netfs/fuse')
-rw-r--r--netfs/fuse/fuseApp.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/netfs/fuse/fuseApp.h b/netfs/fuse/fuseApp.h
index 5652a41..6b975aa 100644
--- a/netfs/fuse/fuseApp.h
+++ b/netfs/fuse/fuseApp.h
@@ -17,7 +17,7 @@
namespace NetFS {
class DLL_PUBLIC FuseApp : public FuseAppBaseT<FuseApp> {
- private:
+ public:
using FuseHandleTypeId = decltype(fuse_file_info::fh);
class OpenDir;
using OpenDirPtr = std::shared_ptr<OpenDir>;
@@ -27,7 +27,6 @@ namespace NetFS {
using OpenFilePtr = std::shared_ptr<OpenFile>;
using OpenFiles = std::map<FuseHandleTypeId, OpenFilePtr>;
- public:
explicit FuseApp(Ice::StringSeq &&);
SPECIAL_MEMBERS_DELETE(FuseApp);
~FuseApp() override;