PLCEntity.cs 533 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Aitex.Core.RT.PLC;
  6. using Aitex.Triton160.RT.Simulator;
  7. namespace Aitex.Triton160.RT.PLC
  8. {
  9. public class PLCEntity : PLCEntityT<GroupFinsDataDevice, CPLCBuffer, PLC_INPUT_DATA, PLC_OUTPUT_DATA>
  10. {
  11. public PLCEntity()
  12. {
  13. }
  14. }
  15. public class PLCDummyEntity : PLCEntityT<SimulatorFinsDataDevice, CPLCBuffer, PLC_INPUT_DATA, PLC_OUTPUT_DATA>
  16. {
  17. public PLCDummyEntity()
  18. {
  19. }
  20. }
  21. }