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