tbf/TBF/Rig/GenericDevices/IPlotter.cs
2021-03-05 16:12:24 +01:00

17 lines
313 B
C#

///
/// Copyright (c) 2018 Sensus Slovensko a.s.
///
using System;
namespace TBF.Rig.GenericDevices
{
public interface IPlotter
{
int StartGraph(int batchNr, string testName, int repetition);
void UpdateGraph(int graphId, float x, float y);
void StopGraph(int graphId, float ymin, float ymax);
}
}