comparison Framework/Common/DatabasesEnumerations.h @ 244:02cd7254c949

separating class InputFileValue from FileValue
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 13 Apr 2021 18:43:21 +0200
parents b40b30075c51
children 9d00e5e073e8
comparison
equal deleted inserted replaced
243:f5dc59c56e65 244:02cd7254c949
26 { 26 {
27 enum ValueType 27 enum ValueType
28 { 28 {
29 ValueType_BinaryString, 29 ValueType_BinaryString,
30 ValueType_File, 30 ValueType_File,
31 ValueType_InputFile,
31 ValueType_Integer64, 32 ValueType_Integer64,
32 ValueType_Null, 33 ValueType_Null,
33 ValueType_Utf8String 34 ValueType_Utf8String
34 }; 35 };
35 36