#include "CryDir.h" #include #include #include #include #include "fspp/fuse/FuseErrnoException.h" #include "CryDevice.h" #include "CryFile.h" //TODO Get rid of this in favor of exception hierarchy using fspp::fuse::CHECK_RETVAL; using fspp::fuse::FuseErrnoException; namespace bf = boost::filesystem; using std::unique_ptr; using std::make_unique; using std::string; using std::vector; namespace cryfs { CryDir::CryDir() { } CryDir::~CryDir() { } unique_ptr CryDir::createFile(const string &name, mode_t mode) { throw FuseErrnoException(ENOTSUP); } unique_ptr CryDir::createDir(const string &name, mode_t mode) { throw FuseErrnoException(ENOTSUP); } void CryDir::rmdir() { throw FuseErrnoException(ENOTSUP); } unique_ptr> CryDir::children() const { throw FuseErrnoException(ENOTSUP); } }