EyeHandCalibRun.cs 529 B

1234567891011121314151617181920
  1. using CommonMethods.Interface;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using CommonMethods;
  8. using System.Windows.Forms;
  9. namespace EyeHandCalibTool
  10. {
  11. public class EyeHandCalibRun : IToolRun
  12. {
  13. public void ToolRun(string jobName, int toolIndex, int inputItemNum, TreeNode selectNode, List<IToolInfo> L_toolList, IVisionJob runJob, Form myHalconWindowForm)
  14. {
  15. // throw new NotImplementedException();
  16. }
  17. }
  18. }