16 lines
564 B
Plaintext
16 lines
564 B
Plaintext
|
|
using DTS.Common.Classes.Sensors;
|
||
|
|
using DTS.Common.Enums.Sensors;
|
||
|
|
using DTS.Common.Import.ImportOptions;
|
||
|
|
|
||
|
|
namespace DTS.Common.Import.Interfaces
|
||
|
|
{
|
||
|
|
public interface IParseCSVSensor
|
||
|
|
{
|
||
|
|
int Version { get; }
|
||
|
|
void Initialize(ICalibrationImport import, ZeroMethodOptions zmOptions,
|
||
|
|
IImportNotification importNotification, bool importCreateDynamicGroups,
|
||
|
|
bool useIsoCodeFilterMapping, bool useZeroForUnfiltered);
|
||
|
|
void ParseVersion(CSVImportTags.Tags field, string val, ParseParameters pp);
|
||
|
|
}
|
||
|
|
}
|