storage/Interface: explicitly delete copy constructors

This commit is contained in:
Max Kellermann
2014-02-05 19:30:58 +01:00
parent c8c3f20840
commit e3e3053f32
2 changed files with 4 additions and 2 deletions

View File

@@ -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,