tbf/TBF/BenchControl/GenericDevices/IPlotter.cs

17 lines
298 B
C#
Raw Normal View History

///
/// 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);
}
}