Commit e3e3053f authored by Max Kellermann's avatar Max Kellermann

storage/Interface: explicitly delete copy constructors

parent c8c3f208
......@@ -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,
......
......@@ -56,8 +56,6 @@ public:
LocalStorage(const char *_base_utf8, Path _base_fs)
:base_utf8(_base_utf8), base_fs(_base_fs) {}
LocalStorage(const LocalStorage &) = delete;
/* virtual methods from class Storage */
virtual bool GetInfo(const char *uri_utf8, bool follow, FileInfo &info,
Error &error) override;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment