tbf/TBF/Rig/GenericDevices/IResultsPrinter.cs
2021-04-03 00:54:18 +02:00

16 lines
361 B
C#

///
/// Copyright (c) 2013-2020 Sensus Slovensko a.s.
///
namespace TBF.Rig.GenericDevices
{
public interface IResultsPrinter : IResultsProcessor
{
/// <summary>
/// When true printing at the end of cycle is bypassed.
/// Can be used to disable printing without having to modify all procedures.
/// </summary>
bool SupressPrinting { get; }
}
}