ISimulatorManager.cs 220 B

123456789101112
  1. using Aitex.Triton160.RT.PLC;
  2. namespace Aitex.Triton160.RT.Simulator
  3. {
  4. public interface ISimulatorManager
  5. {
  6. object Read(string type);
  7. bool Write(string type, PLC_OUTPUT_DATA buffer);
  8. }
  9. }