diff options
Diffstat (limited to 'src/common/DataStores/DB2FileLoader.h')
-rw-r--r-- | src/common/DataStores/DB2FileLoader.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common/DataStores/DB2FileLoader.h b/src/common/DataStores/DB2FileLoader.h index ef247052c9e..70b6afc2081 100644 --- a/src/common/DataStores/DB2FileLoader.h +++ b/src/common/DataStores/DB2FileLoader.h @@ -90,6 +90,12 @@ struct TC_COMMON_API DB2FileLoadInfo std::string TypesString; }; +enum class DB2EncryptedSectionHandling +{ + Skip, + Process +}; + struct TC_COMMON_API DB2FileSource { virtual ~DB2FileSource(); @@ -109,6 +115,8 @@ struct TC_COMMON_API DB2FileSource virtual int64 GetFileSize() const = 0; virtual char const* GetFileName() const = 0; + + virtual DB2EncryptedSectionHandling HandleEncryptedSection(DB2SectionHeader const& sectionHeader) const = 0; }; class TC_COMMON_API DB2Record |