From 885fc0ce9d15edd3dc8a6886e7e0450dd6822449 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Thu, 27 Nov 2014 16:51:38 +0100 Subject: [PATCH] TODOs --- src/fspp/impl/Filesystem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fspp/impl/Filesystem.h b/src/fspp/impl/Filesystem.h index dbdd67c6..9547c867 100644 --- a/src/fspp/impl/Filesystem.h +++ b/src/fspp/impl/Filesystem.h @@ -21,8 +21,8 @@ public: virtual void truncate(const boost::filesystem::path &path, off_t size) = 0; virtual void ftruncate(int descriptor, off_t size) = 0; virtual int read(int descriptor, void *buf, size_t count, off_t offset) = 0; - //TODO Unit-Tests for all functions below 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; virtual void fdatasync(int descriptor) = 0; virtual void access(const boost::filesystem::path &path, int mask) = 0;