summaryrefslogtreecommitdiff
path: root/mythfs/service/inodes/file.h
blob: e71a343353fe5f8ef58bdb9962dcfde5717f1336 (plain)
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