diff options
Diffstat (limited to 'backends/fs')
-rw-r--r-- | backends/fs/chroot/chroot-fs-factory.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/backends/fs/chroot/chroot-fs-factory.h b/backends/fs/chroot/chroot-fs-factory.h index 49101918ce..d3c997be6f 100644 --- a/backends/fs/chroot/chroot-fs-factory.h +++ b/backends/fs/chroot/chroot-fs-factory.h @@ -32,16 +32,15 @@ * plugin code. */ class ChRootFilesystemFactory : public FilesystemFactory { -private: - Common::String _root; +public: + ChRootFilesystemFactory(Common::String root); -protected: virtual AbstractFSNode *makeRootFileNode() const; virtual AbstractFSNode *makeCurrentDirectoryFileNode() const; virtual AbstractFSNode *makeFileNodePath(const Common::String &path) const; -public: - ChRootFilesystemFactory(Common::String root); +private: + Common::String _root; }; #endif /* BACKENDS_FS_CHROOT_CHROOT_FS_FACTORY_H */ |