Sic.Framework-Nanjing-Baishi/MECF.Framework.RT.Core/IoProviders/Siemens/Transfer/RegularByteTransform.cs

50 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
/**********************************************************************************************
*
* 说明一般的转换类适应于C#语言三菱PLC数据
* 日期2018年5月2日 16:05:56
*
* 常规的数据转换继承自基类,并不需要进行变换运算
*
**********************************************************************************************/
namespace MECF.Framework.RT.Core.IoProviders.Siemens.Transfer
{
/// <summary>
/// 常规的字节转换类
/// </summary>
public class RegularByteTransform : ByteTransformBase
{
#region Constructor
/// <summary>
/// 实例化一个默认的对象
/// </summary>
public RegularByteTransform( )
{
}
/// <summary>
/// 使用指定的解析规则来初始化对象
/// </summary>
/// <param name="dataFormat">解析规则</param>
public RegularByteTransform(DataFormat dataFormat) : base( dataFormat )
{
}
#endregion
}
}