diff options
-rw-r--r-- | netfs/fuse/fuseMappersImpl.h | 32 |
1 files changed, 15 insertions, 17 deletions
diff --git a/netfs/fuse/fuseMappersImpl.h b/netfs/fuse/fuseMappersImpl.h index fd9e2aa..a87f7ba 100644 --- a/netfs/fuse/fuseMappersImpl.h +++ b/netfs/fuse/fuseMappersImpl.h @@ -7,27 +7,25 @@ #include <fuseMappers.h> #include <visibility.h> -namespace NetFS { - namespace Client { - std::string to_octal(const Ice::Int &); - Ice::Int from_octal(const std::string &); +namespace NetFS::Client { + std::string to_octal(const Ice::Int &); + Ice::Int from_octal(const std::string &); - class DLL_PUBLIC HideUnknownMapperImpl : public HideUnknownMapper, Mapping::BaseMapper { - public: - using BaseMapper::BaseMapper; + class DLL_PUBLIC HideUnknownMapperImpl : public HideUnknownMapper, Mapping::BaseMapper { + public: + using BaseMapper::BaseMapper; - Mapping::Transport mapFileSystem(int uid, int gid) override; - Mapping::FileSystem mapTransport(const std::string & un, const std::string & gn) override; - }; + Mapping::Transport mapFileSystem(int uid, int gid) override; + Mapping::FileSystem mapTransport(const std::string & un, const std::string & gn) override; + }; - class DLL_PUBLIC MaskUnknownMapperImpl : public MaskUnknownMapper, Mapping::BaseMapper { - public: - using BaseMapper::BaseMapper; + class DLL_PUBLIC MaskUnknownMapperImpl : public MaskUnknownMapper, Mapping::BaseMapper { + public: + using BaseMapper::BaseMapper; - Mapping::Transport mapFileSystem(int uid, int gid) override; - Mapping::FileSystem mapTransport(const std::string & un, const std::string & gn) override; - }; - } + Mapping::Transport mapFileSystem(int uid, int gid) override; + Mapping::FileSystem mapTransport(const std::string & un, const std::string & gn) override; + }; } #endif |