summaryrefslogtreecommitdiff
path: root/src/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/file.h')
-rw-r--r--src/file.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/file.h b/src/file.h
index bedceada..26d0704a 100644
--- a/src/file.h
+++ b/src/file.h
@@ -52,6 +52,10 @@ public:
* @param mode mode flags, as for fopen(3)
*/
File(boost::filesystem::path, std::string mode);
+
+ File(File&& other);
+ File& operator=(File&& other);
+
~File();
File(File const&) = delete;