2014-08-28 update 1 change sln name

This commit is contained in:
parallelbgls@outlook.com
2014-08-28 11:12:37 +08:00
parent e0fea8731e
commit 32c497342b
39 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ModBus.Net
{
public abstract class RtuProtocalLinker : ProtocalLinker
{
protected RtuProtocalLinker()
{
//初始化连对象
_baseConnector = new ComConnector(ConfigurationManager.COM);
}
protected RtuProtocalLinker(string com)
{
_baseConnector = new ComConnector(com);
}
}
}