2014-08-27 update 2 Rename Class

This commit is contained in:
parallelbgls@outlook.com
2014-08-27 16:23:47 +08:00
parent abfc5698f4
commit da82933c52
11 changed files with 40 additions and 40 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);
}
}
}