aboutsummaryrefslogtreecommitdiff
path: root/src/common/DataStores/DB2FileSystemSource.h
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2023-04-18 11:37:12 +0200
committerShauren <shauren.trinity@gmail.com>2023-04-18 18:46:08 +0200
commitffc06b27d083c905788c12c21e26e03cfb15543b (patch)
tree0f0d339538798da1749b5b727137c2ede01bfed5 /src/common/DataStores/DB2FileSystemSource.h
parentc603c9d9e0d641826514e7413d45e918f58a2c85 (diff)
Core/DataStores: Minor db2 loader cleanup
Diffstat (limited to 'src/common/DataStores/DB2FileSystemSource.h')
-rw-r--r--src/common/DataStores/DB2FileSystemSource.h4
1 files changed, 4 insertions, 0 deletions
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;