diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-01-11 20:43:42 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-01-31 16:13:19 +0000 |
commit | f387cd34ec00ca0a66201cfd44373ab2008a0da8 (patch) | |
tree | 3433b009d308ebed1c5ae6bd87df101996f9fd1d /mythfs/service/inodes/file.h | |
parent | Build most things by default (diff) | |
download | mythfs-f387cd34ec00ca0a66201cfd44373ab2008a0da8.tar.bz2 mythfs-f387cd34ec00ca0a66201cfd44373ab2008a0da8.tar.xz mythfs-f387cd34ec00ca0a66201cfd44373ab2008a0da8.zip |
WIP MythFS inodes
Diffstat (limited to 'mythfs/service/inodes/file.h')
-rw-r--r-- | mythfs/service/inodes/file.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mythfs/service/inodes/file.h b/mythfs/service/inodes/file.h new file mode 100644 index 0000000..e71a343 --- /dev/null +++ b/mythfs/service/inodes/file.h @@ -0,0 +1,15 @@ +#ifndef MYTHFS_FILE_H +#define MYTHFS_FILE_H + +#include "node.h" + +namespace MythFS { + class File : public Node { + public: + NetFS::Attr getattr() const override; + PointerType getChild(const std::string &) const override; + }; +} + +#endif + |