init
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
|
||||
namespace DTS.Common.Enums
|
||||
{
|
||||
[Flags]
|
||||
public enum SupportedExportFormatBitFlags
|
||||
{
|
||||
none = 0x0, //1<<0
|
||||
csvunfiltered = 0x1, //1<<0
|
||||
diademadc = 0x2, //1 <<1
|
||||
isounfiltered = 0x4, // 1<<2
|
||||
somatunfiltered = 0x8, //1 << 3
|
||||
tdmsadc = 0x10, //1 << 4
|
||||
toyotaunfiltered = 0x20, //1<<5
|
||||
tsvunfiltered = 0x40,
|
||||
csvfiltered = 0x80,
|
||||
//diademfiltered = 0x100, //unused & available
|
||||
isofiltered = 0x200,
|
||||
somatfiltered = 0x400,
|
||||
tdasadc = 0x800,
|
||||
toyotafiltered = 0x1000,
|
||||
tsvfiltered = 0x2000,
|
||||
rdfadc = 0x4000,
|
||||
ChryslerDDAS = 0x8000,
|
||||
HDFUnfiltered = 0x10000,
|
||||
HDFFiltered = 0x20000,
|
||||
HDFMV = 0x40000,
|
||||
HDFADC = 0x80000,
|
||||
xlsxfiltered = 0x100000,
|
||||
xlsxunfiltered = 0x200000,
|
||||
CSVADC = 0x400000,
|
||||
CSVMV = 0x800000,
|
||||
//DataPRO 3.3, Chapter 10 export
|
||||
Ch10FilteredEU = 0x1000000,
|
||||
Ch10UnfilteredEU = 0x2000000,
|
||||
FIATASC = 0x4000000,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user