2022-03-21 14:48:26 +08:00
|
|
|
/*
|
2021-03-17 16:08:13 +08:00
|
|
|
* ==============================================================================
|
|
|
|
|
*
|
|
|
|
|
* Filename: IToolRun
|
|
|
|
|
* Description:
|
|
|
|
|
*
|
|
|
|
|
* Version: 1.0
|
|
|
|
|
* Created: 2021/2/25 14:49:20
|
|
|
|
|
*
|
|
|
|
|
* 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(int toolIndex, int inputItemNum, TreeNode selectNode, FormLog myFormLog, FormImageWindow myFormWindow, List<IToolInfo> L_toolList);
|
|
|
|
|
}
|
|
|
|
|
}
|