From ffc06b27d083c905788c12c21e26e03cfb15543b Mon Sep 17 00:00:00 2001 From: Shauren Date: Tue, 18 Apr 2023 11:37:12 +0200 Subject: Core/DataStores: Minor db2 loader cleanup --- src/common/DataStores/DB2FileSystemSource.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/common/DataStores/DB2FileSystemSource.h') diff --git a/src/common/DataStores/DB2FileSystemSource.h b/src/common/DataStores/DB2FileSystemSource.h index 993b8e64c3d..16c0e8d1848 100644 --- a/src/common/DataStores/DB2FileSystemSource.h +++ b/src/common/DataStores/DB2FileSystemSource.h @@ -24,6 +24,10 @@ struct TC_COMMON_API DB2FileSystemSource : public DB2FileSource { DB2FileSystemSource(std::string const& fileName); + DB2FileSystemSource(DB2FileSystemSource const& other) = delete; + DB2FileSystemSource(DB2FileSystemSource&& other) noexcept = delete; + DB2FileSystemSource& operator=(DB2FileSystemSource const& other) = delete; + DB2FileSystemSource& operator=(DB2FileSystemSource&& other) noexcept = delete; ~DB2FileSystemSource(); bool IsOpen() const override; bool Read(void* buffer, std::size_t numBytes) override; -- cgit v1.2.3