mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-24 00:36:41 +08:00
28 lines
626 B
C#
28 lines
626 B
C#
/*
|
|
* ==============================================================================
|
|
*
|
|
* Filename: ToolRun
|
|
* Description:
|
|
*
|
|
* Version: 1.0
|
|
* Created: 2021/2/25 15:27:56
|
|
*
|
|
* Author: liu.wenjie
|
|
*
|
|
* ==============================================================================
|
|
*/
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CommonMethods.Interface
|
|
{
|
|
public interface IToolRun
|
|
{
|
|
void ToolRun(string jobName, int toolIndex, int inputItemNum, TreeNode selectNode, List<IToolInfo> L_toolList);
|
|
}
|
|
}
|