This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AUTS_OLD/AUTS_AOI/IStatisticsObserver.vb

16 lines
334 B
VB.net
Raw Permalink Normal View History

2024-03-11 16:32:52 +08:00
Public Interface IStatisticsObserver
Sub UpdateFailCount(failCount As Integer)
Sub UpdatePassCount(passCount As Integer)
Sub UpdateValidCount(validCount As Integer)
Sub UpdateInvalidCount(invalidCount As Integer)
Sub UpdateSumCount(sumCount As Integer)
Sub UpdateYield(yield As Double)
End Interface