1 2 3 4 5 6 7 8 9 10 11 12 13 14 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