You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
314 B
14 lines
314 B
namespace Mirle.Component.MPLC.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// 控制器工廠介面
|
|
/// </summary>
|
|
public interface IPLCHostFactory
|
|
{
|
|
/// <summary>
|
|
/// 取得實例
|
|
/// </summary>
|
|
/// <returns>控制器介面</returns>
|
|
IPLCHost GetInstance();
|
|
}
|
|
}
|