This commit is contained in:
Sebastian Messmer 2014-11-28 11:57:46 +01:00
parent bd8fc1de6e
commit 9ed39dc578

View File

@ -22,8 +22,8 @@ public:
virtual void ftruncate(int descriptor, off_t size) = 0;
virtual int read(int descriptor, void *buf, size_t count, off_t offset) = 0;
virtual void write(int descriptor, const void *buf, size_t count, off_t offset) = 0;
//TODO Unit-Tests for all functions below
virtual void fsync(int descriptor) = 0;
//TODO Unit-Tests for all functions below
virtual void fdatasync(int descriptor) = 0;
virtual void access(const boost::filesystem::path &path, int mask) = 0;
virtual void mkdir(const boost::filesystem::path &path, mode_t mode) = 0;