diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-07-20 10:53:14 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-07-20 10:53:14 +0100 |
commit | 4c25da8a7ba7437657c3e2da592145113d3532f4 (patch) | |
tree | 40f0468135089ff4f9e967bf8ee74b020bee67f7 /src/dir.cpp | |
download | netfs-gitfs-4c25da8a7ba7437657c3e2da592145113d3532f4.tar.bz2 netfs-gitfs-4c25da8a7ba7437657c3e2da592145113d3532f4.tar.xz netfs-gitfs-4c25da8a7ba7437657c3e2da592145113d3532f4.zip |
Initial commit
Not a lot of stuff, hard coded paths, tests against /usr/portage
Diffstat (limited to 'src/dir.cpp')
-rw-r--r-- | src/dir.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/dir.cpp b/src/dir.cpp new file mode 100644 index 0000000..8a9fd86 --- /dev/null +++ b/src/dir.cpp @@ -0,0 +1,30 @@ +#include <Ice/ObjectAdapter.h> +#include "dir.h" + +GitFS::Directory::Directory(const GitFS::Git::TreePtr & t, const std::string & p) : + tree(t), + path(p) +{ +} + +void +GitFS::Directory::close(const ::Ice::Current& current) +{ + current.adapter->remove(current.id); +} + + +NetFS::NameList +GitFS::Directory::readdir(const ::Ice::Current&) +{ + return {}; +} + + +NetFS::DirectoryContents +GitFS::Directory::listdir(const ::Ice::Current&) +{ + return {}; +} + + |