aboutsummaryrefslogtreecommitdiff
path: root/src/common/DataStores/DB2FileSystemSource.h
diff options
context:
space:
mode:
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;