aboutsummaryrefslogtreecommitdiffstats
path: root/src/storage/StorageInterface.hxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/storage/StorageInterface.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/storage/StorageInterface.hxx b/src/storage/StorageInterface.hxx
index ecdc882b6..18bee8cfd 100644
--- a/src/storage/StorageInterface.hxx
+++ b/src/storage/StorageInterface.hxx
@@ -31,6 +31,8 @@ class AllocatedPath;
class StorageDirectoryReader {
public:
+ StorageDirectoryReader() = default;
+ StorageDirectoryReader(const StorageDirectoryReader &) = delete;
virtual ~StorageDirectoryReader() {}
virtual const char *Read() = 0;
@@ -39,6 +41,8 @@ public:
class Storage {
public:
+ Storage() = default;
+ Storage(const Storage &) = delete;
virtual ~Storage() {}
virtual bool GetInfo(const char *uri_utf8, bool follow, FileInfo &info,