DummyLoadPort.cs 683 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.LoadPorts
  7. {
  8. public class DummyLoadPort : LoadPort
  9. {
  10. public DummyLoadPort(string module, string name) : base(module, name)
  11. {
  12. }
  13. public override bool IsEnableMapWafer()
  14. {
  15. return false;
  16. }
  17. public override bool IsEnableTransferWafer()
  18. {
  19. return false;
  20. }
  21. public override bool IsEnableTransferWafer(out string reason)
  22. {
  23. reason = "";
  24. return false;
  25. }
  26. }
  27. }