2018-02-11 15:31:25 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2018 Sensus Slovensko a.s.
|
|
|
|
|
|
///
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IPlotter
|
|
|
|
|
|
{
|
|
|
|
|
|
int StartGraph(int batchNr, string testName, int repetition);
|
|
|
|
|
|
|
|
|
|
|
|
void UpdateGraph(int graphId, float x, float y);
|
|
|
|
|
|
|
2018-02-12 21:26:18 +00:00
|
|
|
|
void StopGraph(int graphId, float ymin, float ymax);
|
2018-02-11 15:31:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|