17 lines
298 B
C#
17 lines
298 B
C#
|
|
///
|
|||
|
|
/// 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);
|
|||
|
|
|
|||
|
|
void StopGraph(int graphId);
|
|||
|
|
}
|
|||
|
|
}
|