| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | using Aitex.Core.RT.Fsm;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Venus_RT.Devices.SMIF{    /// <summary>    /// SMIF主要功能 用于自动化的Cassette传送    /// 主要功能包括Load Unload HOME等    /// </summary>    public class SMIFEntity : Entity, IModuleEntity    {        public bool IsInit => throw new NotImplementedException();        public bool IsBusy => throw new NotImplementedException();        public bool IsIdle => throw new NotImplementedException();        public bool IsError => throw new NotImplementedException();        public SMIFEntity()        {        }        public bool Check(int msg, out string reason, params object[] args)        {            throw new NotImplementedException();        }        public bool CheckAcked(int msg)        {            throw new NotImplementedException();        }        public int Invoke(string function, params object[] args)        {            throw new NotImplementedException();        }    }}
 |