HDevEngineToolRun.cs 490 B

12345678910111213141516171819
  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 HDevEngineTool
  10. {
  11. public class HDevEngineToolRun : IToolRun
  12. {
  13. public void ToolRun(string jobName, int toolIndex, int inputItemNum, TreeNode selectNode, List<IToolInfo> L_toolList, IVisionJob runJob, Form myHalconWindowForm)
  14. {
  15. }
  16. }
  17. }