using System; namespace HC_APTBS.Infrastructure.Kwp { public interface IInterface : IDisposable { byte ReadByte(); void WriteByteRaw(byte b); void SetBreakOn(); void SetBreakOff(); void ClearReceiveBuffer(); } }