ToolRun.cs 663 B

123456789101112131415161718192021222324252627
  1. /*
  2. * ==============================================================================
  3. *
  4. * Filename: ToolRun
  5. * Description:
  6. *
  7. * Version: 1.0
  8. * Created: 2021/2/25 15:27:56
  9. *
  10. * Author: liu.wenjie
  11. *
  12. * ==============================================================================
  13. */
  14. using System;
  15. using System.Collections.Generic;
  16. using System.Linq;
  17. using System.Text;
  18. using System.Threading.Tasks;
  19. using System.Windows.Forms;
  20. namespace CommonMethods.Interface
  21. {
  22. public interface IToolRun
  23. {
  24. void ToolRun(string jobName, int toolIndex, int inputItemNum, TreeNode selectNode, List<IToolInfo> L_toolList, IVisionJob runJob, Form myHalconWindow);
  25. }
  26. }