123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Aitex.Core.RT.PLC;
- using Aitex.Triton160.RT.Simulator;
- namespace Aitex.Triton160.RT.PLC
- {
- public class PLCEntity : PLCEntityT<GroupFinsDataDevice, CPLCBuffer, PLC_INPUT_DATA, PLC_OUTPUT_DATA>
- {
- public PLCEntity()
- {
- }
- }
- public class PLCDummyEntity : PLCEntityT<SimulatorFinsDataDevice, CPLCBuffer, PLC_INPUT_DATA, PLC_OUTPUT_DATA>
- {
- public PLCDummyEntity()
- {
- }
- }
- }
|